Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/fibril_synch.h

    rfb0ec570 ra55d76b1  
    6767typedef struct {
    6868        fibril_owner_info_t oi;  /**< Keep this the first thing. */
    69         unsigned int writers;
    70         unsigned int readers;
     69        unsigned writers;
     70        unsigned readers;
    7171        list_t waiters;
    7272} fibril_rwlock_t;
     
    145145/** A counting semaphore for fibrils. */
    146146typedef struct {
    147         long int count;
     147        long count;
    148148        list_t waiters;
    149149} fibril_semaphore_t;
Note: See TracChangeset for help on using the changeset viewer.