/* $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 * UPDATE HISTORY: * 15/02/2002: Created */ #include #include int pthread_kill(pthread_t thread, int sig) { return (ENOSYS); } /* EOF */