From: Antti Kantee Date: Mon, 19 Jan 2015 15:31:37 +0000 (+0000) Subject: fix unsupported call stubs used by pthread_cancelstub X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=73aad325ed5a1daf96717ad1180d8d86a08a0057;p=rumpuser-xen.git fix unsupported call stubs used by pthread_cancelstub --- diff --git a/lib/libc_stubs.c b/lib/libc_stubs.c index 7c7f69f..a57e0bd 100644 --- a/lib/libc_stubs.c +++ b/lib/libc_stubs.c @@ -14,10 +14,21 @@ STUB(__sigaction14); STUB(__sigaction_sigtramp); STUB(__getrusage50); -STUB(__wait450); STUB(__fork); STUB(__vfork14); STUB(execve); STUB(kill); STUB(getpriority); STUB(setpriority); + +/* for pthread_cancelstub */ +STUB(_sys_mq_send); +STUB(_sys_mq_receive); +STUB(_sys___mq_timedsend50); +STUB(_sys___mq_timedreceive50); +STUB(_sys_msgrcv); +STUB(_sys_msgsnd); +STUB(_sys___msync13); +STUB(_sys___wait450); +STUB(_sys___sigsuspend14); +STUB(____sigtimedwait50);