mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
23 lines
474 B
C
23 lines
474 B
C
|
/* $Id: kill.c,v 1.4 2002/10/29 04:45:38 rex Exp $
|
||
|
*/
|
||
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS POSIX+ Subsystem
|
||
|
* FILE: subsys/psx/lib/psxdll/pthread/kill.c
|
||
|
* PURPOSE: Send a signal to a thread
|
||
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
||
|
* UPDATE HISTORY:
|
||
|
* 15/02/2002: Created
|
||
|
*/
|
||
|
|
||
|
#include <signal.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int pthread_kill(pthread_t thread, int sig)
|
||
|
{
|
||
|
return (ENOSYS);
|
||
|
}
|
||
|
|
||
|
/* EOF */
|
||
|
|