File:  [DVB] / dietlibc / lib / shutdown.c
Revision 1.7: 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>
#include <sys/socket.h>

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

int __libc_shutdown(int s, int how);
int __libc_shutdown(int s, int how) {
  long args[] = { s, (long) how, 0 };
  return socketcall(SYS_SHUTDOWN, args);
}

int shutdown(int s, int how) __attribute__((weak,alias("__libc_shutdown")));

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>