File: shmem.h

package info (click to toggle)
gkrelldnet 0.14.2-6
  • links: PTS
  • area: contrib
  • in suites: etch, etch-m68k
  • size: 120 kB
  • ctags: 106
  • sloc: ansic: 1,025; makefile: 64; sh: 13
file content (11 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
/* $Id: shmem.h,v 1.4 2004/11/27 16:25:37 papier Exp $ */


#ifndef __SHMEM_H__
#define __SHMEM_H__

int my_shmcreate(int size, int shmflg);
int my_shmget(int size, int shmflg);
void my_shmdel(int shmid);

#endif