summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmkey01/init.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-12-13 10:13:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-12-13 10:13:24 +0000
commit257d8fde7760e26db7d4ed986d01225327302d2e (patch)
tree9a81ea61ae57f16f5ffb94d392b26ea1ab324cc4 /testsuites/psxtmtests/psxtmkey01/init.c
parent2011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-257d8fde7760e26db7d4ed986d01225327302d2e.tar.bz2
2011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* psxtmbarrier01/init.c: Make benchmark_pthread_barrier_init, benchmark_pthread_barrier_destroy static. * psxtmkey01/init.c: Make benchmark_pthread_key_create, benchmark_pthread_key_delete static. * psxtmrwlock01/init.c: Make benchmark_pthread_rwlock_init, benchmark_pthread_rwlock_rdlock, benchmark_pthread_rwlock_unlock, benchmark_pthread_rwlock_tryrdlock, benchmark_pthread_rwlock_timedrdlock, benchmark_pthread_rwlock_wrlock, benchmark_pthread_rwlock_trywrlock, benchmark_pthread_rwlock_timedwrlock, benchmark_pthread_rwlock_destroy static. * psxtmsem01/init.c: Make benchmark_sem_init, benchmark_sem_destroy, benchmark_sem_open, benchmark_sem_close, benchmark_sem_unlink, benchmark_sem_open_second, benchmark_sem_close_second static. * psxtmthread01/init.c: Make benchmark_pthread_create static.
Diffstat (limited to 'testsuites/psxtmtests/psxtmkey01/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmkey01/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtmtests/psxtmkey01/init.c b/testsuites/psxtmtests/psxtmkey01/init.c
index 98c254f2b3..2de58ba9e3 100644
--- a/testsuites/psxtmtests/psxtmkey01/init.c
+++ b/testsuites/psxtmtests/psxtmkey01/init.c
@@ -21,7 +21,7 @@
pthread_key_t Key;
-void benchmark_pthread_key_create(void)
+static void benchmark_pthread_key_create(void)
{
benchmark_timer_t end_time;
int status;
@@ -41,7 +41,7 @@ void benchmark_pthread_key_create(void)
}
-void benchmark_pthread_key_delete(void)
+static void benchmark_pthread_key_delete(void)
{
benchmark_timer_t end_time;
int status;