Hi Dimitry, > On Tue, Mar 27, 2012 at 10:34:54AM +1100, Anton Blanchard wrote: > > > > * linux/powerpc/syscallent.h: Add socket system calls > > Just for the record, what have happened with the socket subcall on > ppc?
The socket subcall will continue to exist but we will transition over to the explicit system calls over time. Recently introduced socket calls are already doing it. Before the patch: syscall_344(0x1, 0xfffc672daa0, 0xfffc672dab0, 0, 0, 0) = -1 (errno 88) And after: accept4(1, 0xfffe1e5af70, [128], 0) = -1 ENOTSOCK (Socket operation on non-socket) It is unfortunate the calls were not added in the same order as the old socket subcall, we could have shared the table in strace. Too late now. Anton ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
