summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadjoin.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-01-31 11:03:24 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-02-03 17:45:32 -0600
commite633f3b51c573be2d8a6d6c58acfea55c921aa58 (patch)
tree45c63129be1e1aec7173afd2810398f938d67fe6 /cpukit/posix/src/pthreadjoin.c
parentrtems/*.c: Remove use of register keyword (diff)
downloadrtems-e633f3b51c573be2d8a6d6c58acfea55c921aa58.tar.bz2
posix/*.c: Remove use of register keyword
Diffstat (limited to 'cpukit/posix/src/pthreadjoin.c')
-rw-r--r--cpukit/posix/src/pthreadjoin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/pthreadjoin.c b/cpukit/posix/src/pthreadjoin.c
index 6b562ecf41..cad7a35d91 100644
--- a/cpukit/posix/src/pthreadjoin.c
+++ b/cpukit/posix/src/pthreadjoin.c
@@ -8,7 +8,7 @@
/*
* 16.1.3 Wait for Thread Termination, P1003.1c/Draft 10, p. 147
*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2014.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -32,7 +32,7 @@ int pthread_join(
void **value_ptr
)
{
- register Thread_Control *the_thread;
+ Thread_Control *the_thread;
POSIX_API_Control *api;
Objects_Locations location;
void *return_pointer;