Changeset 4db6eaf in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2008-01-06T14:05:15Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
10d6b858
Parents:
b3c38750
Message:

Fix type in declaration of VFS node rwlock.
Introduce a dedicated type for futexes. Make the existing futex code use this
newly introduced type and fix formatting in futex.c.

File:
1 edited

Legend:

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

    rb3c38750 r4db6eaf  
    11/*
    2  * Copyright (c) 2007 Jakub Jermar
     2 * Copyright (c) 2008 Jakub Jermar
    33 * All rights reserved.
    44 *
     
    137137        link_t nh_link;         /**< Node hash-table link. */
    138138
    139         /** Holding this rwlock prevents modifications of the node's contents. */
    140         atomic_t contents_rwlock;
     139        /**
     140         * Holding this rwlock prevents modifications of the node's contents.
     141         */
     142        rwlock_t contents_rwlock;
    141143} vfs_node_t;
    142144
Note: See TracChangeset for help on using the changeset viewer.