summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/posix/headers/config.h2
-rw-r--r--c/src/exec/posix/include/rtems/posix/config.h2
-rw-r--r--c/src/exec/posix/src/pthread.c2
-rw-r--r--cpukit/posix/include/rtems/posix/config.h2
-rw-r--r--cpukit/posix/src/pthread.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/c/src/exec/posix/headers/config.h b/c/src/exec/posix/headers/config.h
index a0851ad77f..ff1ec637e5 100644
--- a/c/src/exec/posix/headers/config.h
+++ b/c/src/exec/posix/headers/config.h
@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
- void *(*entry)(void *);
+ void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {
diff --git a/c/src/exec/posix/include/rtems/posix/config.h b/c/src/exec/posix/include/rtems/posix/config.h
index a0851ad77f..ff1ec637e5 100644
--- a/c/src/exec/posix/include/rtems/posix/config.h
+++ b/c/src/exec/posix/include/rtems/posix/config.h
@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
- void *(*entry)(void *);
+ void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {
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 );
diff --git a/cpukit/posix/include/rtems/posix/config.h b/cpukit/posix/include/rtems/posix/config.h
index a0851ad77f..ff1ec637e5 100644
--- a/cpukit/posix/include/rtems/posix/config.h
+++ b/cpukit/posix/include/rtems/posix/config.h
@@ -38,7 +38,7 @@ extern "C" {
*/
typedef struct {
- void *(*entry)(void *);
+ void *(*thread_entry)(void *);
} posix_initialization_threads_table;
typedef struct {
diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c
index 95213389cb..3721832c43 100644
--- a/cpukit/posix/src/pthread.c
+++ b/cpukit/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 );