URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [accept.c] - Rev 1770
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 accept(int sockfd, const struct sockaddr *peer, int *paddrlen) { unsigned long args[3]; args[0] = sockfd; args[1] = (unsigned long)peer; args[2] = (unsigned long)paddrlen; return socketcall(SYS_ACCEPT, args); }
Go to most recent revision | Compare with Previous | Blame | View Log