Browse Source

optimize/debloat raise

use __syscall rather than syscall when failure is not possible or not
to be considered.
Rich Felker 12 năm trước cách đây
mục cha
commit
d53c92c972
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/signal/raise.c

+ 2 - 2
src/signal/raise.c

@@ -9,8 +9,8 @@ int raise(int sig)
 	int pid, tid, ret;
 	sigset_t set;
 	__syscall(SYS_rt_sigprocmask, SIG_BLOCK, SIGALL_SET, &set, _NSIG/8);
-	tid = syscall(SYS_gettid);
-	pid = syscall(SYS_getpid);
+	tid = __syscall(SYS_gettid);
+	pid = __syscall(SYS_getpid);
 	ret = syscall(SYS_tgkill, pid, tid, sig);
 	__syscall(SYS_rt_sigprocmask, SIG_SETMASK, &set, 0, _NSIG/8);
 	return ret;