mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
385fdfdfeb
svn path=/trunk/; revision=3674
22 lines
474 B
C
22 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 */
|
|
|