summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_open.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/dietlibc/libpthread/pthread_sys_open.c')
-rw-r--r--mdk-stage1/dietlibc/libpthread/pthread_sys_open.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/libpthread/pthread_sys_open.c b/mdk-stage1/dietlibc/libpthread/pthread_sys_open.c
new file mode 100644
index 000000000..513f6a323
--- /dev/null
+++ b/mdk-stage1/dietlibc/libpthread/pthread_sys_open.c
@@ -0,0 +1,12 @@
+#include <unistd.h>
+
+#include <pthread.h>
+#include "thread_internal.h"
+
+int __pthread_open(const char *pathname, int flags, mode_t mode)
+{
+ __TEST_CANCEL();
+ return __libc_open(pathname,flags,mode);
+}
+
+int open(const char *pathname, int flags, ...) __attribute__((alias("__pthread_open")));