소스 검색

add __sysv_signal abi-compat alias for the signal function

it should be noted that the "real" __sysv_signal, which we do not
implement, is semantically different from signal. references to
__sysv_signal arise in code built against glibc under certain
combinations of feature test macros, and are almost surely
unintentional since the legacy sysv signal behavior has fundamental
race conditions that cannot be worked around and which make it
impossible to use safely.
Rich Felker 11 년 전
부모
커밋
6ce1fade49
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/signal/signal.c

+ 1 - 0
src/signal/signal.c

@@ -13,3 +13,4 @@ void (*signal(int sig, void (*func)(int)))(int)
 }
 
 weak_alias(signal, bsd_signal);
+weak_alias(signal, __sysv_signal);