Changeset cf26ba9 in mainline for generic/src/synch
- Timestamp:
- 2006-05-01T12:24:32Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 953b0f33
- Parents:
- ea199e5
- Location:
- generic/src/synch
- Files:
-
- 5 edited
-
condvar.c (modified) (1 diff)
-
futex.c (modified) (1 diff)
-
mutex.c (modified) (1 diff)
-
semaphore.c (modified) (1 diff)
-
spinlock.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
generic/src/synch/condvar.c
rea199e5 rcf26ba9 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file condvar.c 31 * @brief Condition variables. 27 32 */ 28 33 -
generic/src/synch/futex.c
rea199e5 rcf26ba9 28 28 29 29 /** 30 * Kernel backend for futexes. 31 * Deallocation of orphaned kernel-side futex structures is not currently implemented. 30 * @file futex.c 31 * @brief Kernel backend for futexes. 32 * 33 * @todo Deallocation of orphaned kernel-side futex structures is not currently implemented. 32 34 */ 33 35 -
generic/src/synch/mutex.c
rea199e5 rcf26ba9 27 27 */ 28 28 29 /** 30 * @file mutex.c 31 * @brief Mutexes. 32 */ 33 29 34 #include <synch/mutex.h> 30 35 #include <synch/semaphore.h> -
generic/src/synch/semaphore.c
rea199e5 rcf26ba9 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file semaphore.c 31 * @brief Semaphores. 27 32 */ 28 33 -
generic/src/synch/spinlock.c
rea199e5 rcf26ba9 27 27 */ 28 28 29 /** 30 * @file spinlock.c 31 * @brief Spinlocks. 32 */ 33 29 34 #include <synch/spinlock.h> 30 35 #include <atomic.h>
Note:
See TracChangeset
for help on using the changeset viewer.
