cpu/cc2538: made _kill(_r) syscalls weak

This commit is contained in:
Hauke Petersen 2014-11-18 19:07:29 +01:00
parent bfa2bfb5ad
commit f5480234c3

View File

@ -155,7 +155,8 @@ pid_t _getpid(void)
*
* @return TODO
*/
int _kill_r(struct _reent *r, pid_t pid, int sig)
__attribute__ ((weak))
int _kill_r(struct _reent *r, int pid, int sig)
{
r->_errno = ESRCH; /* not implemented yet */
return -1;
@ -326,3 +327,18 @@ int _unlink_r(struct _reent *r, char *path)
r->_errno = ENODEV; /* not implemented yet */
return -1;
}
/**
* @brief Send a signal to a thread
*
* @param[in] pid the pid to send to
* @param[in] sig the signal to send
*
* @return TODO
*/
__attribute__ ((weak))
int _kill(int pid, int sig)
{
errno = ESRCH; /* not implemented yet */
return -1;
}