Changeset cd688d9 in mainline
- Timestamp:
- 2009-08-27T18:34:38Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 402a18f
- Parents:
- c91f2d1b
- Location:
- uspace/lib/libblock
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libblock/libblock.c
rc91f2d1b rcd688d9 306 306 b->refcnt = 1; 307 307 b->dirty = false; 308 b->toxic = false; 308 309 fibril_rwlock_initialize(&b->contents_lock); 309 310 link_initialize(&b->free_link); -
uspace/lib/libblock/libblock.h
rc91f2d1b rcd688d9 69 69 /** If true, the block needs to be written back to the block device. */ 70 70 bool dirty; 71 /** If true, the blcok does not contain valid data. */ 72 bool toxic; 71 73 /** Readers / Writer lock protecting the contents of the block. */ 72 74 fibril_rwlock_t contents_lock;
Note:
See TracChangeset
for help on using the changeset viewer.