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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [send.c] - Blame information for rev 199

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

Line No. Rev Author Line
1 199 simons
#include <syscall.h>
2
#include <sys/socket.h>
3
#include <sys/socketcall.h>
4
 
5
static inline
6
_syscall2(long,socketcall,int,call,unsigned long *,args);
7
 
8
/* send, sendto added by bir7@leland.stanford.edu */
9
 
10
int
11
send (int sockfd, const void *buffer, size_t len, unsigned flags)
12
{
13
  unsigned long args[4];
14
  args[0] = sockfd;
15
  args[1] = (unsigned long) buffer;
16
  args[2] = len;
17
  args[3] = flags;
18
  return (socketcall (SYS_SEND, args));
19
}

powered by: WebSVN 2.1.0

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