summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/thread/thr_close.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread/thread/thr_close.c')
-rw-r--r--lib/libpthread/thread/thr_close.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/libpthread/thread/thr_close.c b/lib/libpthread/thread/thr_close.c
index fe2d9e2..9dee2bc 100644
--- a/lib/libpthread/thread/thr_close.c
+++ b/lib/libpthread/thread/thr_close.c
@@ -41,15 +41,13 @@
#include "pthread_private.h"
int
-_libc_close(int fd)
+_close(int fd)
{
int flags;
int ret;
struct stat sb;
struct fd_table_entry *entry;
- _thread_enter_cancellation_point();
-
if ((fd == _thread_kern_pipe[0]) || (fd == _thread_kern_pipe[1])) {
/*
* Don't allow silly programs to close the kernel pipe.
@@ -99,9 +97,18 @@ _libc_close(int fd)
/* Close the file descriptor: */
ret = _thread_sys_close(fd);
}
- _thread_leave_cancellation_point();
return (ret);
}
-__weak_reference(_libc_close, close);
+int
+close(int fd)
+{
+ int ret;
+
+ _thread_enter_cancellation_point();
+ ret = _close(fd);
+ _thread_leave_cancellation_point();
+
+ return ret;
+}
#endif
OpenPOWER on IntegriCloud