now introducing the POSIX+ client DLL! (my first check-in, hope I don't f*** up somet...
[reactos.git] / posix / lib / psxdll / pthread / kill.c
1 /* $Id:
2 */
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS system libraries
6 * FILE: subsys/psx/lib/psxdll/pthread/kill.c
7 * PURPOSE: Send a signal to a thread
8 * PROGRAMMER: KJK::Hyperion <noog@libero.it>
9 * UPDATE HISTORY:
10 * 15/02/2002: Created
11 */
12
13 #include <signal.h>
14 #include <errno.h>
15
16 int pthread_kill(pthread_t thread, int sig)
17 {
18 return (ENOSYS);
19 }
20
21 /* EOF */
22