| Tekkotsu Homepage | Demos | Overview | Downloads | Dev. Resources | Reference | Credits |
MutexLock.ccGo to the documentation of this file.00001 #include "MutexLock.h" 00002 00003 unsigned int MutexLockBase::usleep_granularity=5000; 00004 00005 #ifndef PLATFORM_APERIOS 00006 SemaphoreManager MutexLockBase::preallocated; 00007 SemaphoreManager* MutexLockBase::semgr=&preallocated; 00008 ThreadNS::Lock MutexLockBase::thdLocks[SemaphoreManager::MAX_SEM]; 00009 #endif 00010 00011 /*! @file 00012 * @brief Defines MutexLock, a software only mutual exclusion lock. 00013 * @author ejt (Creator), Edward A. Lycklama, Vassos Hadzilacos (paper from which this was based) 00014 * 00015 * $Author: ejt $ 00016 * $Name: tekkotsu-3_0 $ 00017 * $Revision: 1.3 $ 00018 * $State: Exp $ 00019 * $Date: 2006/05/08 22:07:54 $ 00020 */ |
|
Tekkotsu v3.0 |
Generated Wed Oct 4 00:03:44 2006 by Doxygen 1.4.7 |