Changeset 3afecf8 in rtems


Ignore:
Timestamp:
04/15/99 18:56:42 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0f4e074
Parents:
3090760
Message:

Now compiles and is included in normal build even though it is untested.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/src/aio.c

    r3090760 r3afecf8  
    66
    77#include <rtems/system.h>
     8#include <rtems/posix/seterr.h>
     9
     10int POSIX_NOT_IMPLEMENTED();
    811
    912/*PAGE
  • c/src/exec/posix/src/cancel.c

    r3090760 r3afecf8  
    2828  POSIX_Cancel_Handler_control      *handler;
    2929  Chain_Control                     *handler_stack;
    30   POSIX_API_Thread_Support_Control  *thread_support;
     30  POSIX_API_Control                 *thread_support;
    3131  ISR_Level                          level;
    3232 
     
    6565{
    6666  Thread_Control                    *the_thread;
    67   POSIX_API_Thread_Support_Control  *thread_support;
     67  POSIX_API_Control                 *thread_support;
    6868  Objects_Locations                  location;
    6969
    70   the_thread = _POSIX_Threads_Get( &thread, &location );
     70  the_thread = _POSIX_Threads_Get( thread, &location );
    7171  switch ( location ) {
    7272    case OBJECTS_ERROR:
     
    9696)
    9797{
    98   POSIX_API_Thread_Support_Control  *thread_support;
     98  POSIX_API_Control                 *thread_support;
    9999
    100100  if ( !oldstate )
     
    127127)
    128128{
    129   POSIX_API_Thread_Support_Control  *thread_support;
     129  POSIX_API_Control                 *thread_support;
    130130 
    131131  if ( !oldtype )
     
    155155void pthread_testcancel( void )
    156156{
    157   POSIX_API_Thread_Support_Control  *thread_support;
     157  POSIX_API_Control                 *thread_support;
    158158
    159159  thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ];
     
    176176  POSIX_Cancel_Handler_control      *handler;
    177177  Chain_Control                     *handler_stack;
    178   POSIX_API_Thread_Support_Control  *thread_support;
     178  POSIX_API_Control                 *thread_support;
    179179 
    180180  if ( !routine )
     
    207207  POSIX_Cancel_Handler_control      *handler;
    208208  Chain_Control                     *handler_stack;
    209   POSIX_API_Thread_Support_Control  *thread_support;
     209  POSIX_API_Control                 *thread_support;
    210210  ISR_Level                          level;
    211211 
  • cpukit/posix/src/aio.c

    r3090760 r3afecf8  
    66
    77#include <rtems/system.h>
     8#include <rtems/posix/seterr.h>
     9
     10int POSIX_NOT_IMPLEMENTED();
    811
    912/*PAGE
  • cpukit/posix/src/cancel.c

    r3090760 r3afecf8  
    2828  POSIX_Cancel_Handler_control      *handler;
    2929  Chain_Control                     *handler_stack;
    30   POSIX_API_Thread_Support_Control  *thread_support;
     30  POSIX_API_Control                 *thread_support;
    3131  ISR_Level                          level;
    3232 
     
    6565{
    6666  Thread_Control                    *the_thread;
    67   POSIX_API_Thread_Support_Control  *thread_support;
     67  POSIX_API_Control                 *thread_support;
    6868  Objects_Locations                  location;
    6969
    70   the_thread = _POSIX_Threads_Get( &thread, &location );
     70  the_thread = _POSIX_Threads_Get( thread, &location );
    7171  switch ( location ) {
    7272    case OBJECTS_ERROR:
     
    9696)
    9797{
    98   POSIX_API_Thread_Support_Control  *thread_support;
     98  POSIX_API_Control                 *thread_support;
    9999
    100100  if ( !oldstate )
     
    127127)
    128128{
    129   POSIX_API_Thread_Support_Control  *thread_support;
     129  POSIX_API_Control                 *thread_support;
    130130 
    131131  if ( !oldtype )
     
    155155void pthread_testcancel( void )
    156156{
    157   POSIX_API_Thread_Support_Control  *thread_support;
     157  POSIX_API_Control                 *thread_support;
    158158
    159159  thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ];
     
    176176  POSIX_Cancel_Handler_control      *handler;
    177177  Chain_Control                     *handler_stack;
    178   POSIX_API_Thread_Support_Control  *thread_support;
     178  POSIX_API_Control                 *thread_support;
    179179 
    180180  if ( !routine )
     
    207207  POSIX_Cancel_Handler_control      *handler;
    208208  Chain_Control                     *handler_stack;
    209   POSIX_API_Thread_Support_Control  *thread_support;
     209  POSIX_API_Control                 *thread_support;
    210210  ISR_Level                          level;
    211211 
Note: See TracChangeset for help on using the changeset viewer.