Changeset 530 for Whitix/branches/hybrid
- Timestamp:
- 05/24/08 09:51:56 (5 months ago)
- Location:
- Whitix/branches/hybrid/include
- Files:
-
- 2 added
- 2 modified
-
i386/pit.h (modified) (1 diff)
-
i386/process.h (modified) (1 diff)
-
imports.h (added)
-
symbols.h (added)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/include/i386/pit.h
r333 r530 24 24 int PitInit(); 25 25 26 extern volatile QWORD time; 27 28 static inline QWORD PitGetQuantums() {return time;} 26 QWORD PitGetQuantums(); 29 27 30 28 #define WAIT(time) \ -
Whitix/branches/hybrid/include/i386/process.h
r200 r530 38 38 struct Thread* ThrArchSwitch(struct Thread* prev,struct Thread* next); 39 39 int ThrArchCreateThread(struct Thread* thread,DWORD entry,int user,DWORD stackP, void* argument); 40 void ThrArchPrintContext(struct Thread* thread,structContext* curr);40 void ThrArchPrintContext(struct Context* curr); 41 41 int ThrArchDestroyThread(struct Thread* thread); 42 42 void i386ContextSwitch(struct Thread* prev,struct Thread* next); 43 43 44 45 44 #endif
