summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/pthread.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-07-09 23:52:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-07-09 23:52:08 +0000
commita14d2af9588a3cd0d414d6e19669d3c01b143ccf (patch)
tree1385870ec6b480e765ae3a0d568ca7b70fd469d1 /c/src/exec/posix/src/pthread.c
parentUsed macro instead of hard coded number. (diff)
downloadrtems-a14d2af9588a3cd0d414d6e19669d3c01b143ccf.tar.bz2
Changed name from entry to thread_entry to be more compatible with
Ada interface where entry is a keyword.
Diffstat (limited to 'c/src/exec/posix/src/pthread.c')
-rw-r--r--c/src/exec/posix/src/pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/pthread.c b/c/src/exec/posix/src/pthread.c
index 95213389cb..3721832c43 100644
--- a/c/src/exec/posix/src/pthread.c
+++ b/c/src/exec/posix/src/pthread.c
@@ -265,7 +265,7 @@ void _POSIX_Threads_Initialize_user_threads( void )
status = pthread_create(
&thread_id,
&attr,
- user_threads[ index ].entry,
+ user_threads[ index ].thread_entry,
NULL
);
assert( !status );