Ignore:
Timestamp:
2007-02-03T13:22:24Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f619ec11
Parents:
fa8e7d2
Message:

Merge as_t structure into one and leave the differring parts in as_genarch_t.

Indentation and formatting changes in header files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/synch/condvar.h

    rfa8e7d2 r80bcaed  
    4545} condvar_t;
    4646
    47 #define condvar_wait(cv,mtx) \
    48         _condvar_wait_timeout((cv),(mtx),SYNCH_NO_TIMEOUT,SYNCH_FLAGS_NONE)
    49 #define condvar_wait_timeout(cv,mtx,usec) \
    50         _condvar_wait_timeout((cv),(mtx),(usec),SYNCH_FLAGS_NONE)
     47#define condvar_wait(cv, mtx) \
     48        _condvar_wait_timeout((cv), (mtx), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
     49#define condvar_wait_timeout(cv, mtx, usec) \
     50        _condvar_wait_timeout((cv), (mtx), (usec), SYNCH_FLAGS_NONE)
    5151
    5252extern void condvar_initialize(condvar_t *cv);
    5353extern void condvar_signal(condvar_t *cv);
    5454extern void condvar_broadcast(condvar_t *cv);
    55 extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec, int flags);
     55extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec,
     56    int flags);
    5657
    5758#endif
Note: See TracChangeset for help on using the changeset viewer.