File:  [DVB] / dietlibc / lib / socketpair.c
Revision 1.8: download - view: text, annotated - select for diffs
Thu Mar 3 19:03:16 2011 UTC (13 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
socket modernization part 2

#include "syscalls.h"
#ifdef __NR_socketcall

#include <linuxnet.h>

extern int socketcall(int callno,long* args);

int __libc_socketpair(int a, int type, int protocol, int sv[2]);
int __libc_socketpair(int a, int type, int protocol, int sv[2]) {
  long args[] = { a, type, protocol, (long)sv };
  return socketcall(SYS_SOCKETPAIR, args);
}

int socketpair(int d, int type, int protocol, int sv[2])
  __attribute__((weak,alias("__libc_socketpair")));

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>