Explorar el Código

s/strong/weak/, sorry sjhill, have overseen your change

Peter S. Mazinger hace 19 años
padre
commit
2bbcf533dd
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      libc/sysdeps/linux/common/__rt_sigtimedwait.c

+ 3 - 2
libc/sysdeps/linux/common/__rt_sigtimedwait.c

@@ -46,5 +46,6 @@ int attribute_hidden __sigtimedwait(const sigset_t * set, siginfo_t * info,
 	return -1;
 }
 #endif
-strong_alias(__sigtimedwait,sigtimedwait)
-strong_alias(__sigwaitinfo,sigwaitinfo)
+/* keep these weak so that libpthread can overwrite them */
+weak_alias(__sigtimedwait,sigtimedwait)
+weak_alias(__sigwaitinfo,sigwaitinfo)