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 / shmat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-04  |  280 b   |  15 lines

  1. #include <syscall.h>
  2.  
  3. #define __KERNEL__ 
  4. #include <sys/shm.h>
  5.  
  6. char *
  7. shmat (int shmid, char *shmaddr, int shmflg)
  8. {
  9.     int rval; 
  10.     unsigned long raddr;
  11.  
  12.     rval = __ipc (SHMAT, shmid, shmflg, (int) &raddr, shmaddr);
  13.     return rval < 0 ? (char *) rval : (char *) raddr;
  14. }
  15.