URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [socketpair.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
#include <syscall.h> #include <sys/socket.h> #include <sys/socketcall.h> static inline _syscall2(long,socketcall,int,call,unsigned long *,args); int socketpair(int family, int type, int protocol, int sockvec[2]) { unsigned long args[4]; args[0] = family; args[1] = type; args[2] = protocol; args[3] = (unsigned long)sockvec; return socketcall(SYS_SOCKETPAIR, args); }
Go to most recent revision | Compare with Previous | Blame | View Log