Changeset 06e1e95 in mainline for kernel/generic/include/synch
- Timestamp:
- 2006-09-14T17:09:21Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1d1f5d3
- Parents:
- e5ecc02
- Location:
- kernel/generic/include/synch
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/condvar.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __CONDVAR_H__36 #define __CONDVAR_H__35 #ifndef KERN_CONDVAR_H_ 36 #define KERN_CONDVAR_H_ 37 37 38 38 #include <arch/types.h> … … 57 57 #endif 58 58 59 59 /** @} 60 60 */ 61 -
kernel/generic/include/synch/futex.h
re5ecc02 r06e1e95 33 33 */ 34 34 35 #ifndef __FUTEX_H__36 #define __FUTEX_H__35 #ifndef KERN_FUTEX_H_ 36 #define KERN_FUTEX_H_ 37 37 38 38 #include <arch/types.h> … … 60 60 /** @} 61 61 */ 62 -
kernel/generic/include/synch/mutex.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __MUTEX_H__36 #define __MUTEX_H__35 #ifndef KERN_MUTEX_H_ 36 #define KERN_MUTEX_H_ 37 37 38 38 #include <arch/types.h> … … 60 60 #endif 61 61 62 62 /** @} 63 63 */ 64 -
kernel/generic/include/synch/rwlock.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __RWLOCK_H__36 #define __RWLOCK_H__35 #ifndef KERN_RWLOCK_H_ 36 #define KERN_RWLOCK_H_ 37 37 38 38 #include <arch/types.h> … … 75 75 #endif 76 76 77 78 /** @} 77 /** @} 79 78 */ 80 -
kernel/generic/include/synch/semaphore.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __SEMAPHORE_H__36 #define __SEMAPHORE_H__35 #ifndef KERN_SEMAPHORE_H_ 36 #define KERN_SEMAPHORE_H_ 37 37 38 38 #include <arch/types.h> … … 59 59 #endif 60 60 61 62 /** @} 61 /** @} 63 62 */ 64 -
kernel/generic/include/synch/spinlock.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __SPINLOCK_H__36 #define __SPINLOCK_H__35 #ifndef KERN_SPINLOCK_H_ 36 #define KERN_SPINLOCK_H_ 37 37 38 38 #include <arch/types.h> … … 117 117 #endif 118 118 119 119 /** @} 120 120 */ 121 -
kernel/generic/include/synch/synch.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __SYNCH_H__36 #define __SYNCH_H__35 #ifndef KERN_SYNCH_H_ 36 #define KERN_SYNCH_H_ 37 37 38 38 #define SYNCH_NO_TIMEOUT 0 /**< Request with no timeout. */ … … 53 53 #endif 54 54 55 55 /** @} 56 56 */ 57 -
kernel/generic/include/synch/waitq.h
re5ecc02 r06e1e95 27 27 */ 28 28 29 29 /** @addtogroup sync 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef __WAITQ_H__36 #define __WAITQ_H__35 #ifndef KERN_WAITQ_H_ 36 #define KERN_WAITQ_H_ 37 37 38 38 #include <arch/types.h> … … 72 72 #endif 73 73 74 74 /** @} 75 75 */ 76
Note:
See TracChangeset
for help on using the changeset viewer.