home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / shutdown.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-08  |  335 b   |  17 lines

  1. #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. /* shutdown by bir7@leland.stanford.edu */
  9. int
  10. shutdown (int sockfd, int how)
  11. {
  12.   unsigned long args[2];
  13.   args[0] = sockfd;
  14.   args[1] = how;
  15.   return (socketcall (SYS_SHUTDOWN, args));
  16. }
  17.