OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [listen.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
listen(int sockfd, int backlog)
{
	unsigned long args[2];
 
	args[0] = sockfd;
	args[1] = backlog;
	return socketcall(SYS_LISTEN, args);
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.