On Mon, Oct 23, 2006 at 10:05:28PM +0200, Bastian Blank wrote: > dietlibc uses the old select syscall instead of the _newselect one. > select is not longer implemented on powerpc. Just use _newselect > unconditionaly on all linux arches.
Hi Bastian, I can do that of course. Can you tell me the actual problem you ran into? On bruckner.d.o select() with the current dietlibc works fine. Where can I read about select no longer being implemented on powerpc? Thanks, Gerrit. --- syscalls.s/select.S 25 May 2005 08:40:02 -0000 1.2 +++ syscalls.s/select.S 24 Oct 2006 09:23:49 -0000 @@ -1,5 +1,9 @@ #include "syscalls.h" +#ifdef __NR__newselect +syscall(_newselect,select) +#else #ifdef __NR_select syscall(select,select) #endif +#endif -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

