galileo: Remove unneeded syscall stubs

This patch removes _kill_r and _getpid_r stubs since they are not
required by newlib at this moment. These stubs should not be in
the commit that introduced the initial newlib-syscalls.c file.
This commit is contained in:
Andre Guedes 2015-07-13 19:24:31 -03:00 committed by Jesus Sanchez-Palencia
parent dd540e9a21
commit 6c9ab4eb6c
1 changed files with 0 additions and 15 deletions

View File

@ -148,18 +148,3 @@ _sbrk_r(struct _reent *ptr, int incr)
return prev_prog_break;
}
/*---------------------------------------------------------------------------*/
void
_kill_r(struct _reent *ptr)
{
/* Stubbed function */
ptr->_errno = ENOTSUP;
}
/*---------------------------------------------------------------------------*/
int
_getpid_r(struct _reent *ptr)
{
/* Stubbed function */
ptr->_errno = ENOTSUP;
return 1;
}