Changeset f4d52cd7 in rtems


Ignore:
Timestamp:
04/19/96 19:36:59 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3b76313
Parents:
8cf88427
Message:

changes to compile in macro configuration without warnings.

Files:
9 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/headers/chain.h

    r8cf88427 rf4d52cd7  
    8585
    8686/*
     87 *  _Chain_Get_first_unprotected
     88 */
     89 
     90#ifndef USE_INLINES
     91Chain_Node *_Chain_Get_first_unprotected(
     92  Chain_Control *the_chain
     93);
     94#endif
     95
     96/*
    8797 *  _Chain_Extract
    8898 *
  • c/src/exec/score/headers/isr.h

    r8cf88427 rf4d52cd7  
    215215void _ISR_Dispatch( void );
    216216
    217 #ifndef __RTEMS_APPLICATION__
    218217#include <rtems/score/isr.inl>
    219 #endif
    220218
    221219#ifdef __cplusplus
  • c/src/exec/score/headers/thread.h

    r8cf88427 rf4d52cd7  
    546546
    547547/*
     548 *  _Thread_Get
     549 *
     550 *  NOTE:  If we are not using static inlines, this must be a real
     551 *         subroutine call.
     552 */
     553 
     554#ifndef USE_INLINES
     555Thread_Control *_Thread_Get (
     556  Objects_Id           id,
     557  Objects_Locations   *location
     558);
     559#endif
     560
     561/*
    548562 *  _Thread_Idle_body
    549563 *
  • c/src/exec/score/include/rtems/score/chain.h

    r8cf88427 rf4d52cd7  
    8585
    8686/*
     87 *  _Chain_Get_first_unprotected
     88 */
     89 
     90#ifndef USE_INLINES
     91Chain_Node *_Chain_Get_first_unprotected(
     92  Chain_Control *the_chain
     93);
     94#endif
     95
     96/*
    8797 *  _Chain_Extract
    8898 *
  • c/src/exec/score/include/rtems/score/isr.h

    r8cf88427 rf4d52cd7  
    215215void _ISR_Dispatch( void );
    216216
    217 #ifndef __RTEMS_APPLICATION__
    218217#include <rtems/score/isr.inl>
    219 #endif
    220218
    221219#ifdef __cplusplus
  • c/src/exec/score/include/rtems/score/thread.h

    r8cf88427 rf4d52cd7  
    546546
    547547/*
     548 *  _Thread_Get
     549 *
     550 *  NOTE:  If we are not using static inlines, this must be a real
     551 *         subroutine call.
     552 */
     553 
     554#ifndef USE_INLINES
     555Thread_Control *_Thread_Get (
     556  Objects_Id           id,
     557  Objects_Locations   *location
     558);
     559#endif
     560
     561/*
    548562 *  _Thread_Idle_body
    549563 *
  • cpukit/score/include/rtems/score/chain.h

    r8cf88427 rf4d52cd7  
    8585
    8686/*
     87 *  _Chain_Get_first_unprotected
     88 */
     89 
     90#ifndef USE_INLINES
     91Chain_Node *_Chain_Get_first_unprotected(
     92  Chain_Control *the_chain
     93);
     94#endif
     95
     96/*
    8797 *  _Chain_Extract
    8898 *
  • cpukit/score/include/rtems/score/isr.h

    r8cf88427 rf4d52cd7  
    215215void _ISR_Dispatch( void );
    216216
    217 #ifndef __RTEMS_APPLICATION__
    218217#include <rtems/score/isr.inl>
    219 #endif
    220218
    221219#ifdef __cplusplus
  • cpukit/score/include/rtems/score/thread.h

    r8cf88427 rf4d52cd7  
    546546
    547547/*
     548 *  _Thread_Get
     549 *
     550 *  NOTE:  If we are not using static inlines, this must be a real
     551 *         subroutine call.
     552 */
     553 
     554#ifndef USE_INLINES
     555Thread_Control *_Thread_Get (
     556  Objects_Id           id,
     557  Objects_Locations   *location
     558);
     559#endif
     560
     561/*
    548562 *  _Thread_Idle_body
    549563 *
Note: See TracChangeset for help on using the changeset viewer.