Changed name from entry to thread_entry to be more compatible with

Ada interface where entry is a keyword.
This commit is contained in:
Joel Sherrill
1997-07-09 23:52:08 +00:00
parent db17316d4c
commit a14d2af958
5 changed files with 5 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
void *(*entry)(void *);
void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {

View File

@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
void *(*entry)(void *);
void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {

View File

@@ -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 );

View File

@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
void *(*entry)(void *);
void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {

View File

@@ -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 );