Changeset 766 for Whitix/branches
- Timestamp:
- 07/09/08 15:52:17 (5 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/fs/kernel/timer.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/fs/kernel/timer.c
r559 r766 148 148 } 149 149 150 staticvoid SleepWakeup(void* data)150 void SleepWakeup(void* data) 151 151 { 152 152 struct Thread* thread=(struct Thread*)data; 153 Thr StartThread(thread);153 ThrResumeThread(thread); 154 154 } 155 156 SYMBOL_EXPORT(SleepWakeup); 155 157 156 158 void Sleep(int milliSeconds)