Changeset a14d2af in rtems
- Timestamp:
- Jul 9, 1997, 11:52:08 PM (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- eb14a2ff
- Parents:
- db17316
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/headers/config.h
rdb17316 ra14d2af 39 39 40 40 typedef struct { 41 void *(* entry)(void *);41 void *(*thread_entry)(void *); 42 42 } posix_initialization_threads_table; 43 43 -
c/src/exec/posix/include/rtems/posix/config.h
rdb17316 ra14d2af 39 39 40 40 typedef struct { 41 void *(* entry)(void *);41 void *(*thread_entry)(void *); 42 42 } posix_initialization_threads_table; 43 43 -
c/src/exec/posix/src/pthread.c
rdb17316 ra14d2af 266 266 &thread_id, 267 267 &attr, 268 user_threads[ index ]. entry,268 user_threads[ index ].thread_entry, 269 269 NULL 270 270 ); -
cpukit/posix/include/rtems/posix/config.h
rdb17316 ra14d2af 39 39 40 40 typedef struct { 41 void *(* entry)(void *);41 void *(*thread_entry)(void *); 42 42 } posix_initialization_threads_table; 43 43 -
cpukit/posix/src/pthread.c
rdb17316 ra14d2af 266 266 &thread_id, 267 267 &attr, 268 user_threads[ index ]. entry,268 user_threads[ index ].thread_entry, 269 269 NULL 270 270 );
Note: See TracChangeset
for help on using the changeset viewer.