summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/close.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-04-21 21:45:46 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:40 +0200
commit9df9c60aa93287211cf9698eb979d80fded765dc (patch)
tree0564ac7a49e3ebe1aacb47db6b13cefe86bc80dd /libc/sysdeps/linux/common/close.c
parentf6a03f19cf2807170717593b4de8056a1248b99b (diff)
add cancellation for read, write, close
close.c: add function __close_nocancel_no_status to be used internally in libc avoiding inlining it everywhere. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/close.c')
-rw-r--r--libc/sysdeps/linux/common/close.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/common/close.c b/libc/sysdeps/linux/common/close.c
index d6b5fbb20..c26525cf4 100644
--- a/libc/sysdeps/linux/common/close.c
+++ b/libc/sysdeps/linux/common/close.c
@@ -9,12 +9,13 @@
#include <sys/syscall.h>
#include <unistd.h>
+#include <cancel.h>
-_syscall1(int, close, int, fd)
+#define __NR___close_nocancel __NR_close
+_syscall1(int, __NC(close), int, fd)
-#ifndef __LINUXTHREADS_OLD__
-libc_hidden_def(close)
-#else
-libc_hidden_weak(close)
-strong_alias(close,__libc_close)
-#endif
+#define __NR___close_nocancel_no_status __NR_close
+_syscall_noerr1(void, __close_nocancel_no_status, int, fd)
+
+CANCELLABLE_SYSCALL(int, close, (int fd), (fd))
+lt_libc_hidden(close)