these could have caused memory corruption due to invalid accesses to the next field. all should be fixed now; I found the errors with fgrep -r '__lock(&', which is bogus since the argument should be an array.
10 lines
203 B
C
10 lines
203 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_kill(pthread_t t, int sig)
|
|
{
|
|
int r;
|
|
__lock(t->killlock);
|
|
r = t->dead ? ESRCH : -__syscall(SYS_tgkill, t->pid, t->tid, sig);
|
|
__unlock(t->killlock);
|
|
return r;
|
|
}
|