[git commit] shm.c: do not use __libc_X internally

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:43 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=4c5395c9438a98479f17e6bdc88b1ffbe14cae10
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 libc/misc/sysvipc/shm.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libc/misc/sysvipc/shm.c b/libc/misc/sysvipc/shm.c
index 27e871f..ddbf839 100644
--- a/libc/misc/sysvipc/shm.c
+++ b/libc/misc/sysvipc/shm.c
@@ -54,13 +54,13 @@ void * shmat (int shmid, const void *shmaddr, int shmflg)
 #ifdef L_shmctl
 /* Provide operations to control over shared memory segments.  */
 #ifdef __NR_shmctl
-#define __NR___libc_shmctl __NR_shmctl
-static __inline__ _syscall3(int, __libc_shmctl, int, shmid, int, cmd, struct shmid_ds *, buf)
+#define __NR___syscall_shmctl __NR_shmctl
+static __always_inline _syscall3(int, __syscall_shmctl, int, shmid, int, cmd, struct shmid_ds *, buf)
 #endif
 int shmctl(int shmid, int cmd, struct shmid_ds *buf)
 {
 #ifdef __NR_shmctl
-	return __libc_shmctl(shmid, cmd | __IPC_64, buf);
+	return __syscall_shmctl(shmid, cmd | __IPC_64, buf);
 #else
     return __syscall_ipc(IPCOP_shmctl, shmid, cmd | __IPC_64, 0, buf, 0);
 #endif


More information about the uClibc-cvs mailing list