Changeset 3afecf8 in rtems
- Timestamp:
- 04/15/99 18:56:42 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0f4e074
- Parents:
- 3090760
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/aio.c
r3090760 r3afecf8 6 6 7 7 #include <rtems/system.h> 8 #include <rtems/posix/seterr.h> 9 10 int POSIX_NOT_IMPLEMENTED(); 8 11 9 12 /*PAGE -
c/src/exec/posix/src/cancel.c
r3090760 r3afecf8 28 28 POSIX_Cancel_Handler_control *handler; 29 29 Chain_Control *handler_stack; 30 POSIX_API_ Thread_Support_Control*thread_support;30 POSIX_API_Control *thread_support; 31 31 ISR_Level level; 32 32 … … 65 65 { 66 66 Thread_Control *the_thread; 67 POSIX_API_ Thread_Support_Control*thread_support;67 POSIX_API_Control *thread_support; 68 68 Objects_Locations location; 69 69 70 the_thread = _POSIX_Threads_Get( &thread, &location );70 the_thread = _POSIX_Threads_Get( thread, &location ); 71 71 switch ( location ) { 72 72 case OBJECTS_ERROR: … … 96 96 ) 97 97 { 98 POSIX_API_ Thread_Support_Control*thread_support;98 POSIX_API_Control *thread_support; 99 99 100 100 if ( !oldstate ) … … 127 127 ) 128 128 { 129 POSIX_API_ Thread_Support_Control*thread_support;129 POSIX_API_Control *thread_support; 130 130 131 131 if ( !oldtype ) … … 155 155 void pthread_testcancel( void ) 156 156 { 157 POSIX_API_ Thread_Support_Control*thread_support;157 POSIX_API_Control *thread_support; 158 158 159 159 thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ]; … … 176 176 POSIX_Cancel_Handler_control *handler; 177 177 Chain_Control *handler_stack; 178 POSIX_API_ Thread_Support_Control*thread_support;178 POSIX_API_Control *thread_support; 179 179 180 180 if ( !routine ) … … 207 207 POSIX_Cancel_Handler_control *handler; 208 208 Chain_Control *handler_stack; 209 POSIX_API_ Thread_Support_Control*thread_support;209 POSIX_API_Control *thread_support; 210 210 ISR_Level level; 211 211 -
cpukit/posix/src/aio.c
r3090760 r3afecf8 6 6 7 7 #include <rtems/system.h> 8 #include <rtems/posix/seterr.h> 9 10 int POSIX_NOT_IMPLEMENTED(); 8 11 9 12 /*PAGE -
cpukit/posix/src/cancel.c
r3090760 r3afecf8 28 28 POSIX_Cancel_Handler_control *handler; 29 29 Chain_Control *handler_stack; 30 POSIX_API_ Thread_Support_Control*thread_support;30 POSIX_API_Control *thread_support; 31 31 ISR_Level level; 32 32 … … 65 65 { 66 66 Thread_Control *the_thread; 67 POSIX_API_ Thread_Support_Control*thread_support;67 POSIX_API_Control *thread_support; 68 68 Objects_Locations location; 69 69 70 the_thread = _POSIX_Threads_Get( &thread, &location );70 the_thread = _POSIX_Threads_Get( thread, &location ); 71 71 switch ( location ) { 72 72 case OBJECTS_ERROR: … … 96 96 ) 97 97 { 98 POSIX_API_ Thread_Support_Control*thread_support;98 POSIX_API_Control *thread_support; 99 99 100 100 if ( !oldstate ) … … 127 127 ) 128 128 { 129 POSIX_API_ Thread_Support_Control*thread_support;129 POSIX_API_Control *thread_support; 130 130 131 131 if ( !oldtype ) … … 155 155 void pthread_testcancel( void ) 156 156 { 157 POSIX_API_ Thread_Support_Control*thread_support;157 POSIX_API_Control *thread_support; 158 158 159 159 thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ]; … … 176 176 POSIX_Cancel_Handler_control *handler; 177 177 Chain_Control *handler_stack; 178 POSIX_API_ Thread_Support_Control*thread_support;178 POSIX_API_Control *thread_support; 179 179 180 180 if ( !routine ) … … 207 207 POSIX_Cancel_Handler_control *handler; 208 208 Chain_Control *handler_stack; 209 POSIX_API_ Thread_Support_Control*thread_support;209 POSIX_API_Control *thread_support; 210 210 ISR_Level level; 211 211
Note: See TracChangeset
for help on using the changeset viewer.