summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/sigqueue.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-12 07:58:35 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-12 07:58:35 +0200
commit3c293cc795f8c6c8f0dd6e4a16b2bb68633e44da (patch)
tree468089bb310828c57abe7fad900f066762dcd3cb /cpukit/posix/src/sigqueue.c
parentshell: Fix warning visible with latest Newlib (diff)
downloadrtems-3c293cc795f8c6c8f0dd6e4a16b2bb68633e44da.tar.bz2
posix: Rename killinfo()
Apparently killinfo() is not defined by POSIX, glibc or FreeBSD. Rename killinfo() to _POSIX_signals_Send() to cleary mark it as an internal function.
Diffstat (limited to 'cpukit/posix/src/sigqueue.c')
-rw-r--r--cpukit/posix/src/sigqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/sigqueue.c b/cpukit/posix/src/sigqueue.c
index 380ada692d..56292bfd48 100644
--- a/cpukit/posix/src/sigqueue.c
+++ b/cpukit/posix/src/sigqueue.c
@@ -31,5 +31,5 @@ int sigqueue(
const union sigval value
)
{
- return killinfo( pid, signo, &value );
+ return _POSIX_signals_Send( pid, signo, &value );
}