Changeset 10d6b858 in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2008-01-06T16:40:58Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
222e57c
Parents:
4db6eaf
Message:

Introduce the open file lock. Modify vfs_rdwr() to take this lock into account
when reading or writing from/to an open file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.h

    r4db6eaf r10d6b858  
    148148 */
    149149typedef struct {
     150        /** Serializes access to this open file. */
     151        futex_t lock;
     152
    150153        vfs_node_t *node;
    151154       
Note: See TracChangeset for help on using the changeset viewer.