mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
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:
@@ -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>
|
2003-04-03 Eri Valette <eric.valette@free.fr>
|
||||||
|
|
||||||
PR 381/core
|
PR 381/core
|
||||||
|
|||||||
@@ -53,11 +53,15 @@ int kill( pid_t pid, int sig )
|
|||||||
return 0;
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
int __kill( pid_t pid, int sig )
|
int __kill( pid_t pid, int sig )
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user