* posix/glob.h (__glob_opendir_hook, __glob_readdir_hook,
[glibc.git] / sysvipc / sys / shm.h
blob9ee61e4a1bc6efa622bf502f0e7663b2b7e82759
1 /* Copyright (C) 1995 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #ifndef _SYS_SHM_H
21 #define _SYS_SHM_H
23 #include <features.h>
24 #include <unistd.h> /* for `getpagesize' declaration */
25 #include <sys/types.h>
27 /* Get common definition of System V style IPC. */
28 #include <sys/ipc.h>
30 /* Get system dependent definition of `struct shmid_ds' and more. */
31 #include <sys/shm_buf.h>
34 /* Segment low boundary address multiple. */
35 #define SHMLBA getpagesize ()
37 __BEGIN_DECLS
39 /* The following System V style IPC functions implement a shared memory
40 facility. The definition is found in XPG2. */
42 /* Shared memory control operation. */
43 extern int shmctl __P ((int __shmid, int __cmd, struct shmid_ds *__buf));
45 /* Get shared memory segment. */
46 extern int shmget __P ((key_t __key, int __size, int __shmflg));
48 /* Attach shared memory segment. */
49 extern char *shmat __P ((int __shmid, char *__shmaddr, int __shmflg));
51 /* Detach shared memory segment. */
52 extern int shmdt __P ((char *__shmaddr));
54 __END_DECLS
56 #endif /* sys/shm.h */