From d25c187f126df8e4d1cff98368c24815d2088bd3 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sun, 20 Oct 2002 04:15:50 +0000 Subject: Rename _kill() to kill() throughout. Rename _raise() to raise() throughout. Rename _pid() to pid() throughout. * Makefile.in: Compile some objects with -fomit-frame-pointer. * cygwin.din: Reverse aliasing for _kill. * syscalls.cc (_getpid_r): New function, implemented for newlib compatibility. * shared.cc (open_shared): Remove reserving of memory since previous change eliminate the need for this hack. --- winsup/cygwin/thread.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/thread.cc') diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc index 42be6ca2c..115df453e 100644 --- a/winsup/cygwin/thread.cc +++ b/winsup/cygwin/thread.cc @@ -2214,7 +2214,7 @@ __pthread_kill (pthread_t thread, int sig) if (thread->sigs) myself->setthread2signal (thread); - int rval = _kill (myself->pid, sig); + int rval = raise (sig); // unlock myself return rval; -- cgit v1.2.3