Displaying 2 results from an estimated 2 matches for "ae58b9b".
Did you mean:
ad58b49b
2010 Apr 16
0
[PATCH] add minimal faccessat()
...tc.o fgets.o \
+ fopen.o fread.o fread2.o fgetc.o fgets.o faccessat.o \
fwrite.o fwrite2.o fputc.o fputs.o puts.o putchar.o \
sleep.o usleep.o strtotimespec.o strtotimeval.o \
raise.o abort.o assert.o alarm.o pause.o \
diff --git a/usr/klibc/SYSCALLS.def b/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);...
2010 Apr 16
0
[PATCH] pull faccessat() system call
...__extern int access(const char *, int);
-__extern int faccessat(int, const char *, int);
__extern int link(const char *, const char *);
__extern int linkat(int, const char *, int, const char *);
__extern int unlink(const char *);
diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def
index ae58b9b..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...