[klibc] Last call for klibc 2.0...

maximilian attems max at stro.at
Mon May 21 02:31:16 PDT 2012


On Thu, 17 May 2012, H. Peter Anvin wrote:

> I think it's time to issue an official call for anything missing in
> klibc 2.0... testing would also be appreciated.

llseek seems missing in SYSCALLS.def for 64 bit.
but currently I'm confused why belows is needed to have openat compiled on
x86_64:


diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def
index 70838b8..73253c3 100644
--- a/usr/klibc/SYSCALLS.def
+++ b/usr/klibc/SYSCALLS.def
@@ -157,6 +157,7 @@ int getcwd::__getcwd(char *, size_t);
 <!i386,m68k,64> int open::__open(const char *, int, mode_t);
 <?!i386,m68k,64> int openat::__openat(int, const char *, int, mode_t);
 <64> int open(const char *, int, mode_t);
+<64> int openat::__openat(int, const char *, int, mode_t);
 ssize_t read(int, void *, size_t);
 ssize_t write(int, const void *, size_t);
 int close(int);


More information about the klibc mailing list