OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / misc / sysvipc / shm.c
1 /* Copyright (C) 1995, 1997, 1998 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.
4
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.
9
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.
14
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 not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 /* SHMLBA uses it */
21 #define __getpagesize getpagesize
22
23 #include <stdlib.h>
24 #include <errno.h>
25 #include <sys/shm.h>
26 #include <syscall.h>
27 #include "ipc.h"
28
29 libc_hidden_proto(getpagesize)
30
31 #ifdef L_shmat
32 /* Attach the shared memory segment associated with SHMID to the data
33    segment of the calling process.  SHMADDR and SHMFLG determine how
34    and where the segment is attached.  */
35 #if defined (__alpha__)
36 #define __NR_shmat  __NR_osf_shmat
37 #endif
38 #ifdef __NR_shmat
39 _syscall3(void *, shmat, int, shmid, const void *,shmaddr, int, shmflg);
40 #else
41 void * shmat (int shmid, const void *shmaddr, int shmflg)
42 {
43     int retval;
44     unsigned long raddr;
45
46     retval = __syscall_ipc(IPCOP_shmat, shmid, shmflg, (int) &raddr, (void *) shmaddr);
47     return ((unsigned long int) retval > -(unsigned long int) SHMLBA
48             ? (void *) retval : (void *) raddr);
49 }
50 #endif
51 #endif
52
53 #ifdef L_shmctl
54 /* Provide operations to control over shared memory segments.  */
55 #ifdef __NR_shmctl
56 #define __NR___libc_shmctl __NR_shmctl
57 static inline _syscall3(int, __libc_shmctl, int, shmid, int, cmd, struct shmid_ds *, buf);
58 #endif
59 int shmctl(int shmid, int cmd, struct shmid_ds *buf)
60 {
61 #ifdef __NR_shmctl
62         return __libc_shmctl(shmid, cmd | __IPC_64, buf);
63 #else
64     return __syscall_ipc(IPCOP_shmctl, shmid, cmd | __IPC_64, 0, buf);
65 #endif
66 }
67 #endif
68
69
70 #ifdef L_shmdt
71 /* Detach shared memory segment starting at address specified by SHMADDR
72    from the caller's data segment.  */
73 #ifdef __NR_shmdt
74 _syscall1(int, shmdt, const void *, shmaddr);
75 #else
76 int shmdt (const void *shmaddr)
77 {
78     return __syscall_ipc(IPCOP_shmdt, 0, 0, 0, (void *) shmaddr);
79 }
80 #endif
81 #endif
82
83 #ifdef L_shmget
84 /* Return an identifier for an shared memory segment of at least size SIZE
85    which is associated with KEY.  */
86 #ifdef __NR_shmget
87 _syscall3(int, shmget, key_t, key, size_t, size, int, shmflg);
88 #else
89 int shmget (key_t key, size_t size, int shmflg)
90 {
91     return __syscall_ipc(IPCOP_shmget, key, size, shmflg, NULL);
92 }
93 #endif
94 #endif