URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [getsockopt.c] - Rev 1775
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 getsockopt (int fd, int level, int optname, void *optval, int *optlen) { unsigned long args[5]; args[0]=fd; args[1]=level; args[2]=optname; args[3]=(unsigned long)optval; args[4]=(unsigned long)optlen; return (socketcall (SYS_GETSOCKOPT, args)); }
Go to most recent revision | Compare with Previous | Blame | View Log