]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/unix/sysv/linux/powerpc/bits/ipc.h
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / powerpc / bits / ipc.h
index c9c2e2a06b139e127cfe1f387d5e9291a3ac54f2..73854061278c5ce392555df88308bbd940d98285 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2014 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -13,7 +13,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #ifndef _SYS_IPC_H
 # error "Never use <bits/ipc.h> directly; include <sys/ipc.h> instead."
@@ -52,27 +52,3 @@ struct ipc_perm
     __uint64_t __glibc_reserved1;
     __uint64_t __glibc_reserved2;
   };
-
-
-__BEGIN_DECLS
-
-/* The actual system call: all functions are multiplexed by this.  */
-extern int __ipc (int __call, int __first, int __second, int __third,
-                 void *__ptr) __THROW;
-
-__END_DECLS
-
-#ifdef __USE_GNU
-/* The codes for the functions to use the multiplexer `__ipc'.  */
-# define IPCOP_semop    1
-# define IPCOP_semget   2
-# define IPCOP_semctl   3
-# define IPCOP_msgsnd  11
-# define IPCOP_msgrcv  12
-# define IPCOP_msgget  13
-# define IPCOP_msgctl  14
-# define IPCOP_shmat   21
-# define IPCOP_shmdt   22
-# define IPCOP_shmget  23
-# define IPCOP_shmctl  24
-#endif