home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / sys / shm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  406 b   |  19 lines

  1. #ifndef _SYS_SHM_H
  2. #define _SYS_SHM_H
  3.  
  4. #include <features.h>
  5.  
  6. #include <sys/ipc.h>
  7. #include <linux/shm.h>
  8.  
  9. __BEGIN_DECLS
  10.  
  11. extern int shmctl __P((int __shmid, int __cmd, struct shmid_ds *__buf));
  12. extern int shmget __P((key_t __key, int __size, int __flag));
  13. extern char *shmat __P((int __shmid, char *__shmaddr, int __shmflg));
  14. extern int shmdt __P((char *__shmaddr));
  15.  
  16. __END_DECLS
  17.  
  18. #endif /* _SYS_SHM_H */
  19.