Multiuser, Capabilities and Access Controls (#54)
[lunaix-os.git] / lunaix-os / includes / usr / lunaix / types.h
index 9650b47a86badfaae05066800376829d7085f212..3dbddb528c7d6f3a53019644229e4db94ce4002e 100644 (file)
 typedef signed long ssize_t;
 
 typedef int pid_t;
+typedef int tid_t;
+typedef int uid_t;
+typedef int gid_t;
 
-typedef unsigned long size_t;
+typedef __SIZE_TYPE__ size_t;
 
-typedef unsigned long off_t;
+typedef __SIZE_TYPE__ off_t;
 
 typedef unsigned int ino_t;
 
 typedef struct dev_t
 {
     unsigned int meta;
-    unsigned int devident;
-    unsigned int dev_uid;
+    unsigned int unique;
+    unsigned int index;
 } dev_t;
 
 #endif /* __LUNAIX_TYPES_H */