Changeset 6298
- Timestamp:
- 03/02/07 10:19:49
- Files:
-
- OpenThreads/trunk/pthread_src/PThreadCondition.c++ (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenThreads/trunk/pthread_src/PThreadCondition.c++
r6096 r6298 156 156 // Wait time is now + ms milliseconds 157 157 unsigned int sec = ms / 1000; 158 unsigned int nsec = (ms % 1000) * 1000 ;158 unsigned int nsec = (ms % 1000) * 1000000; 159 159 160 160 struct timespec abstime;
