1 #ifndef UUID_PRIVATE_H_
2 #define UUID_PRIVATE_H_
5 Copyright © 2007-2011, The AROS Development Team. All rights reserved.
10 #include <exec/libraries.h>
11 #include <exec/semaphores.h>
12 #include <devices/timer.h>
15 #include <libraries/uuid.h>
18 uuid_time_t ts
; /* saved timestamp */
19 uuid_node_t node
; /* saved node ID */
20 uint16_t cs
; /* saved clock sequence */
24 struct Library uuid_LibNode
;
25 struct SignalSemaphore uuid_GlobalLock
;
26 struct DOSBase
*uuid_DOSBase
;
27 struct timerequest uuid_TR
;
28 uuid_state_t uuid_State
;
29 uuid_time_t uuid_NextUpdate
;
30 uuid_time_t uuid_LastTime
;
31 uint32_t uuid_RandomSeed
;
32 uint16_t uuid_UUIDs_ThisTick
;
33 uint8_t uuid_Initialized
;
37 /* FIXME: Remove these #define xxxBase hacks
38 Do not use this in new code !
43 #define DOSBase (LIBBASE->uuid_DOSBase)
48 #define TimerBase (LIBBASE->uuid_TR.tr_node.io_Device)
50 #define UUIDS_PER_TICK 1024
52 #endif /*UUID_PRIVATE_H_*/