mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
and added test 2) Moved some files which are only architecture-dependant out of the hal 3) Corrected timer implementation (it should now be possible to use them as dispatcher objects) 4) Corrected stupid bug in dpc code 5) Made thread list locking more sensible 6) Altered system call handler to build a proper context in preparation for implementing APCs 7) Rationalised the waiting code svn path=/trunk/; revision=767
19 lines
841 B
C
19 lines
841 B
C
/*
|
|
* Structure ids
|
|
*/
|
|
|
|
#define InternalBaseType (0xcc)
|
|
#define InternalNotificationEvent (InternalBaseType + 1)
|
|
#define InternalSynchronizationEvent (InternalBaseType + 2)
|
|
#define InternalSemaphoreType (InternalBaseType + 3)
|
|
#define InternalProcessType (InternalBaseType + 4)
|
|
#define InternalThreadType (InternalBaseType + 5)
|
|
#define InternalFileType (InternalBaseType + 6)
|
|
#define InternalDriverType (InternalBaseType + 7)
|
|
#define InternalDeviceType (InternalBaseType + 8)
|
|
#define InternalMutexType (InternalBaseType + 9)
|
|
#define InternalNotificationTimer (InternalBaseType + 10)
|
|
#define InternalSynchronizationTimer (InternalBaseType + 11)
|
|
|
|
|