Merge branch 'master' of ssh.ucc.asn.au:tpg/acess2
authorJohn Hodge (sonata) <[email protected]>
Wed, 15 May 2013 08:13:53 +0000 (16:13 +0800)
committerJohn Hodge (sonata) <[email protected]>
Wed, 15 May 2013 08:13:53 +0000 (16:13 +0800)
KernelLand/Kernel/drv/zero-one.c
Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h

index fd14ed1..e7d3892 100644 (file)
@@ -75,7 +75,8 @@ tDevFS_Driver gCoreDevs_FRandom = {
        {
        .Size = 0, .NumACLs = 1,
        .ACLs = &gVFS_ACL_EveryoneRW,
-       .Type = &gCoreDevs_NT_FRandom
+       .Type = &gCoreDevs_NT_FRandom,
+       .DataAvaliable = 1
        }
 };
 tDevFS_Driver  gCoreDevs_GRandom = {
@@ -83,7 +84,8 @@ tDevFS_Driver gCoreDevs_GRandom = {
        {
        .Size = 0, .NumACLs = 1,
        .ACLs = &gVFS_ACL_EveryoneRW,
-       .Type = &gCoreDevs_NT_GRandom
+       .Type = &gCoreDevs_NT_GRandom,
+       .DataAvaliable = 1
        }
 };
 
index be5ceb3..0340a9f 100644 (file)
@@ -18,13 +18,6 @@ typedef uint64_t     blkcnt_t;
 typedef unsigned int   nlink_t;
 typedef uint32_t       mode_t;
 
-#ifndef uid_t
-typedef uint32_t       uid_t;
-#endif
-#ifndef gid_t
-typedef uint32_t       gid_t;
-#endif
-
 #define        S_IFMT          0170000 /* type of file */
 #define                S_IFDIR 0040000 /* directory */
 #define                S_IFCHR 0020000 /* character special */

UCC git Repository :: git.ucc.asn.au