Usermode/libposix - opendir/mkdir
authorJohn Hodge <[email protected]>
Wed, 3 Jul 2013 11:32:31 +0000 (19:32 +0800)
committerJohn Hodge <[email protected]>
Wed, 3 Jul 2013 11:32:31 +0000 (19:32 +0800)
Usermode/Libraries/libposix.so_src/dirent.c
Usermode/Libraries/libposix.so_src/unistd.c

index 5722aa4..920020a 100644 (file)
@@ -24,9 +24,10 @@ DIR *fdopendir(int fd)
        if( _SysFInfo(fd, &info, 0) != 0 )
                return NULL;
 
-       
-
-       return NULL;
+       DIR     *ret = malloc(sizeof(DIR));
+       ret->fd = fd;
+       ret->pos = 0;
+       return ret;
 }
 
 DIR *opendir(const char *name)
@@ -48,6 +49,8 @@ int closedir(DIR *dp)
                errno = EINVAL;
                return -1;
        }
+       _SysClose(dp->fd);
+       free(dp);
        return 0;
 }
 
index e41ebfd..09b603c 100644 (file)
@@ -179,8 +179,9 @@ int chdir(const char *dir)
 
 int mkdir(const char *pathname, mode_t mode)
 {
-       _SysDebug("TODO: POSIX mkdir(%i, 0%o)", pathname, mode);
-       return -1;
+       _SysDebug("TODO: POSIX mkdir('%s', 0%o)", pathname, mode);
+       _SysMkDir(pathname);
+       return 0;
 }
 
 char *getpass(const char *prompt)

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