Changeset 83dab11 in mainline for kernel/generic/include/synch
- Timestamp:
- 2017-06-01T21:22:44Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fb864d65
- Parents:
- 44a7ee5
- Location:
- kernel/generic/include/synch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/condvar.h
r44a7ee5 r83dab11 36 36 #define KERN_CONDVAR_H_ 37 37 38 #include < typedefs.h>38 #include <stdint.h> 39 39 #include <synch/waitq.h> 40 40 #include <synch/mutex.h> -
kernel/generic/include/synch/mutex.h
r44a7ee5 r83dab11 36 36 #define KERN_MUTEX_H_ 37 37 38 #include <typedefs.h> 38 #include <stdbool.h> 39 #include <stdint.h> 39 40 #include <synch/semaphore.h> 40 41 #include <abi/synch.h> -
kernel/generic/include/synch/semaphore.h
r44a7ee5 r83dab11 36 36 #define KERN_SEMAPHORE_H_ 37 37 38 #include < typedefs.h>38 #include <stdint.h> 39 39 #include <synch/waitq.h> 40 40 #include <abi/synch.h> -
kernel/generic/include/synch/spinlock.h
r44a7ee5 r83dab11 36 36 #define KERN_SPINLOCK_H_ 37 37 38 #include < typedefs.h>38 #include <stdbool.h> 39 39 #include <arch/barrier.h> 40 40 #include <preemption.h>
Note:
See TracChangeset
for help on using the changeset viewer.