1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32f1: c++: added _kill (weak) and weak attribute for _kill_r

This commit is contained in:
Pham Huu Dang Nhat 2014-11-12 10:40:12 +07:00
parent 30898af1ca
commit df192b0f25

View File

@ -156,12 +156,29 @@ int _getpid(void)
*
* @return TODO
*/
__attribute__ ((weak))
int _kill_r(struct _reent *r, int pid, int sig)
{
r->_errno = ESRCH; /* not implemented yet */
return -1;
}
/**
* @brief Send a signal to a given thread (non-reentrant syscall)
*
* @param r TODO
* @param pid TODO
* @param sig TODO
*
* @return TODO
*/
__attribute__ ((weak))
int _kill(int pid, int sig)
{
errno = ESRCH; /* not implemented yet */
return -1;
}
/**
* @brief Open a file
*