overhaul pthread cancellation
[musl] / src / unistd / writev.c
index a45afeb..ef300dd 100644 (file)
@@ -4,9 +4,5 @@
 
 ssize_t writev(int fd, const struct iovec *iov, int count)
 {
-       ssize_t r;
-       CANCELPT_BEGIN;
-       r = syscall(SYS_writev, fd, iov, count);
-       CANCELPT_END;
-       return r;
+       return syscall_cp(SYS_writev, fd, iov, count);
 }