2003-04-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

PR 389/rtems
	* src/no_posix.c: Correct _kill_r() prototype and make it conditional
	on newlib.
This commit is contained in:
Joel Sherrill
2003-04-16 19:40:47 +00:00
parent e3aa7c1ba5
commit 3b585c3be6
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2003-04-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 389/rtems
* src/no_posix.c: Correct _kill_r() prototype and make it conditional
on newlib.
2003-04-03 Eri Valette <eric.valette@free.fr>
PR 381/core

View File

@@ -53,11 +53,15 @@ int kill( pid_t pid, int sig )
return 0;
}
int _kill_r( pid_t pid, int sig )
#if defined(RTEMS_NEWLIB)
#include <sys/reent.h>
int _kill_r( struct _reent *ptr, pid_t pid, int sig )
{
return 0;
}
#endif
#endif
int __kill( pid_t pid, int sig )
{