summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-12-03 05:39:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-12-03 05:39:47 +0000
commitc4a9f3f0795a787e55a3cdebb9928bae8261e48c (patch)
treed2190e8eecd11654d594c72c3217cba7768af7b6 /cpukit
parent2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c4a9f3f0795a787e55a3cdebb9928bae8261e48c.tar.bz2
2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* posix/src/aio_misc.c: Make rtems_aio_move_to_work, rtems_aio_insert_prio static.
Diffstat (limited to '')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/posix/src/aio_misc.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 31cd140685..b40e0bb3f0 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * posix/src/aio_misc.c: Make rtems_aio_move_to_work,
+ rtems_aio_insert_prio static.
+
+2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* libcsupport/src/getgid.c: Include <unistd.h>.
* libcsupport/src/setgid.c: Include <unistd.h>.
* libcsupport/src/getpgrp.c: Include <unistd.h>.
diff --git a/cpukit/posix/src/aio_misc.c b/cpukit/posix/src/aio_misc.c
index fa731b8d90..1334e8fead 100644
--- a/cpukit/posix/src/aio_misc.c
+++ b/cpukit/posix/src/aio_misc.c
@@ -136,7 +136,7 @@ rtems_aio_search_fd (rtems_chain_control *chain, int fildes, int create)
* NONE
*/
-void
+static void
rtems_aio_move_to_work (rtems_aio_request_chain *r_chain)
{
rtems_aio_request_chain *temp;
@@ -169,7 +169,7 @@ rtems_aio_move_to_work (rtems_aio_request_chain *r_chain)
* NONE
*/
-void
+static void
rtems_aio_insert_prio (rtems_chain_control *chain, rtems_aio_request *req)
{
rtems_chain_node *node;