search for: __faccessat

Displaying 2 results from an estimated 2 matches for "__faccessat".

Did you mean: do_faccessat
2010 Apr 16
0
[PATCH] add minimal faccessat()
...usr/klibc/SYSCALLS.def index ae58b9b..896452c 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -98,7 +98,7 @@ int swapoff(const char *); * Inode-related system calls */ int access(const char *, int); -<?> int faccessat(int, const char *, int); +<?> int faccessat::__faccessat(int, const char *, int); int link(const char *, const char *); <?> int linkat(int, const char *, int, const char *); int unlink(const char *); diff --git a/usr/klibc/faccessat.c b/usr/klibc/faccessat.c new file mode 100644 index 0000000..f18cf84 --- /dev/null +++ b/usr/klibc/faccessat.c @@...
2010 Apr 16
0
[PATCH] pull faccessat() system call
...ba0e5b9 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -98,7 +98,8 @@ int swapoff(const char *); * Inode-related system calls */ int access(const char *, int); -<?> int faccessat(int, const char *, int); +/* Hide incomplete implementation */ +<?> int faccessat::__faccessat(int, const char *, int); int link(const char *, const char *); <?> int linkat(int, const char *, int, const char *); int unlink(const char *); -- 1.7.0.4 Aleksey Cheusov (1): [klibc] [BUILD] Fixed build on NetBSD Colin Watson (1): [klibc] fstype: recognise ext4 without jou...