Changeset a3900cc in mainline for kernel/generic/src/synch/mutex.c
- Timestamp:
- 2010-04-28T19:23:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b6626d3
- Parents:
- 05411e8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/synch/mutex.c
r05411e8 ra3900cc 40 40 #include <synch/synch.h> 41 41 #include <debug.h> 42 #include <arch.h> 42 43 43 44 /** Initialize mutex. … … 69 70 int rc; 70 71 71 if (mtx->type == MUTEX_PASSIVE ) {72 if (mtx->type == MUTEX_PASSIVE && THREAD) { 72 73 rc = _semaphore_down_timeout(&mtx->sem, usec, flags); 73 74 } else { 74 ASSERT(mtx->type == MUTEX_ACTIVE );75 ASSERT(mtx->type == MUTEX_ACTIVE || !THREAD); 75 76 ASSERT(usec == SYNCH_NO_TIMEOUT); 76 77 ASSERT(!(flags & SYNCH_FLAGS_INTERRUPTIBLE));
Note:
See TracChangeset
for help on using the changeset viewer.