summaryrefslogtreecommitdiff
path: root/userspace/sys/sys.c
blob: ef0d1dfe49d6246279c0282822dbc5e63a32106d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>


// required by binutils!

long sysconf(int name)
{
    printf("SYSCONF CALLED WITH : %s",name);
    return 0;
}

// set file mode creation mask
mode_t umask(mode_t mask)
{
    return mask;
}

// chmod
int chmod(const char * path, mode_t mode)
{
    return -1;
}

// manipulating file descriptor
int fcntl(int fd, int cmd, ...)
{
    return -1;
}

// working directory
char *getwd(char *buf)
{
    static char wd[]="/";
    buf=wd;
    return buf;
}

// check if access allowed
int access(const char *pathname, int mode)
{
    //TODO: at leas check if this file exists!
    return 0;
}

// update time
int utime(const char *filename, const int *x)
{
    return -1;
}

// rmdir
int rmdir (const  char *pathname)
{
    return -1;
}

// chonw
int chown(const char *path, uid_t owner, gid_t group)
{
    return -1;
}