summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmsem02/init.c
diff options
context:
space:
mode:
authorRalf Corsépius <ralf.corsepius@rtems.org>2012-03-02 14:51:10 +0100
committerRalf Corsépius <ralf.corsepius@rtems.org>2012-03-02 14:51:10 +0100
commite6a675e6f95b0c527a666ba75b6c44cf5a9f5f2d (patch)
treed1c05990735c7420889d1b1f041e1a97fbf1809b /testsuites/psxtmtests/psxtmsem02/init.c
parent2012-03-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e6a675e6f95b0c527a666ba75b6c44cf5a9f5f2d.tar.bz2
2011-03-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* psxtmmq01/init.c: Make benchmark_mq_open, benchmark_mq_open_second, benchmark_mq_close, benchmark_mq_close_second, benchmark_mq_unlink, benchmark_mq_notify, benchmark_mq_send, benchmark_mq_receive, benchmark_mq_timedsend, benchmark_mq_timedreceive static. * psxtmmutex01/init.c: Make test_mutex_create, test_mutex_destroy static. * psxtmsem02/init.c: benchmark_sem_getvalue, benchmark_sem_wait, benchmark_sem_post, benchmark_sem_trywait_available, benchmark_sem_trywait_not_available static.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtmtests/psxtmsem02/init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/psxtmtests/psxtmsem02/init.c b/testsuites/psxtmtests/psxtmsem02/init.c
index baddc44fa0..be8673e37e 100644
--- a/testsuites/psxtmtests/psxtmsem02/init.c
+++ b/testsuites/psxtmtests/psxtmsem02/init.c
@@ -24,7 +24,7 @@
sem_t sem1;
sem_t *n_sem1;
-void benchmark_sem_getvalue(void)
+static void benchmark_sem_getvalue(void)
{
benchmark_timer_t end_time;
int status;
@@ -44,7 +44,7 @@ void benchmark_sem_getvalue(void)
);
}
-void benchmark_sem_wait(void)
+static void benchmark_sem_wait(void)
{
benchmark_timer_t end_time;
int status;
@@ -63,7 +63,7 @@ void benchmark_sem_wait(void)
);
}
-void benchmark_sem_post(void)
+static void benchmark_sem_post(void)
{
benchmark_timer_t end_time;
int status;
@@ -82,7 +82,7 @@ void benchmark_sem_post(void)
);
}
-void benchmark_sem_trywait_available(void)
+static void benchmark_sem_trywait_available(void)
{
benchmark_timer_t end_time;
int status;
@@ -101,7 +101,7 @@ void benchmark_sem_trywait_available(void)
);
}
-void benchmark_sem_trywait_not_available(void)
+static void benchmark_sem_trywait_not_available(void)
{
benchmark_timer_t end_time;
int status;