Changeset acda8f0 in mainline
- Timestamp:
- 2010-04-26T19:41:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aeb6f25
- Parents:
- 556f9892
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/stats.c
r556f9892 racda8f0 169 169 */ 170 170 171 if ( !mutex_trylock(&as->lock))171 if (SYNCH_FAILED(mutex_trylock(&as->lock))) 172 172 return result * PAGE_SIZE; 173 173 … … 183 183 as_area_t *area = node->value[i]; 184 184 185 if ( !mutex_trylock(&area->lock))185 if (SYNCH_FAILED(mutex_trylock(&area->lock))) 186 186 continue; 187 187 result += area->pages;
Note:
See TracChangeset
for help on using the changeset viewer.