Changeset fb0ec570 in mainline for uspace/lib/c/include/fibril_synch.h


Ignore:
Timestamp:
2018-06-22T16:32:49Z (6 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4e6a610
Parents:
a8b0c5d
Message:

cstyle improvements (no change in functionality)

File:
1 edited

Legend:

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

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