From f9af28c64eaf09cd9daba0445cb04f7d28e3d792 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 21 Apr 2011 22:01:43 +0200 Subject: creat*.c: add LIBC_CANCEL_HANDLED to know that it is cancellable (handled by open) Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/creat.c | 3 +++ libc/sysdeps/linux/common/creat64.c | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/common/creat.c b/libc/sysdeps/linux/common/creat.c index 77cf44e69..17929193e 100644 --- a/libc/sysdeps/linux/common/creat.c +++ b/libc/sysdeps/linux/common/creat.c @@ -8,8 +8,11 @@ */ #include +#include int creat(const char *file, mode_t mode) { return open(file, O_WRONLY | O_CREAT | O_TRUNC, mode); } +/* open handled cancellation, noop on uClibc */ +LIBC_CANCEL_HANDLED(); diff --git a/libc/sysdeps/linux/common/creat64.c b/libc/sysdeps/linux/common/creat64.c index 550e88aab..5010d767d 100644 --- a/libc/sysdeps/linux/common/creat64.c +++ b/libc/sysdeps/linux/common/creat64.c @@ -18,9 +18,12 @@ #include <_lfs_64.h> #include +#include /* Create FILE with protections MODE. */ int creat64(const char *file, mode_t mode) { - return open64(file, O_WRONLY|O_CREAT|O_TRUNC, mode); + return open64(file, O_WRONLY | O_CREAT | O_TRUNC, mode); } +/* open handled cancellation, noop on uClibc */ +LIBC_CANCEL_HANDLED(); -- cgit v1.2.3