fix aliasing violations in fgetpos/fsetpos
[musl] / src / process / fork.c
index 8d67682..da074ae 100644 (file)
@@ -18,11 +18,11 @@ pid_t fork(void)
        __fork_handler(-1);
        __block_all_sigs(&set);
 #ifdef SYS_fork
-       ret = syscall(SYS_fork);
+       ret = __syscall(SYS_fork);
 #else
-       ret = syscall(SYS_clone, SIGCHLD, 0);
+       ret = __syscall(SYS_clone, SIGCHLD, 0);
 #endif
-       if (libc.has_thread_pointer && !ret) {
+       if (!ret) {
                pthread_t self = __pthread_self();
                self->tid = __syscall(SYS_gettid);
                self->robust_list.off = 0;
@@ -31,5 +31,5 @@ pid_t fork(void)
        }
        __restore_sigs(&set);
        __fork_handler(!ret);
-       return ret;
+       return __syscall_ret(ret);
 }