ApertureOS
priv_sys_man.h
Go to the documentation of this file.
1 #ifndef _PRIV_SYS_MAN_H_
2 #define _PRIV_SYS_MAN_H_
3 
4 #include "types.h"
5 #include "system_manager.h"
6 
7 //Store a single UID and allocating System pair
8 typedef struct
9 {
12 } UID_Entry;
13 
14 typedef struct _UID_LList
15 {
16  UID_Entry entries[256];
17  struct _UID_LList *next;
18 } UID_LList;
19 
20 #endif /* end of include guard: _PRIV_SYS_MAN_H_ */
uint64_t UID
Definition: types.h:8
struct _UID_LList * next
Definition: priv_sys_man.h:17
Definition: priv_sys_man.h:8
UID SysID
Definition: types.h:9
Definition: priv_sys_man.h:14
UID uid
Definition: priv_sys_man.h:10
SysID sys
Definition: priv_sys_man.h:11