Changeset 7f6a24ab in rtems for c/src


Ignore:
Timestamp:
08/28/95 15:30:29 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5072b07
Parents:
5250ff39
Message:

Added unused priority ceiling parameter to rtems_semaphore_create.

Rearranged code to created thread handler routines to initialize,
start, restart, and "close/delete" a thread.

Made internal threads their own object class. This now uses the
thread support routines for starting and initializing a thread.

Insured deleted tasks are freed to the Inactive pool associated with the
correct Information block.

Added an RTEMS API specific data area to the thread control block.

Beginnings of removing the word "rtems" from the core.

Location:
c/src
Files:
97 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/src/libio.c

    r5250ff39 r7f6a24ab  
    112112    }
    113113
    114     rc = rtems_semaphore_create(RTEMS_LIBIO_SEM,
    115                                 1,
    116                                 RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
    117                                 &rtems_libio_semaphore);
     114    rc = rtems_semaphore_create(
     115      RTEMS_LIBIO_SEM,
     116      1,
     117      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
     118      RTEMS_NO_PRIORITY,
     119      &rtems_libio_semaphore
     120    );
    118121    if (rc != RTEMS_SUCCESSFUL)
    119122        rtems_fatal_error_occurred(rc);
     
    200203             */
    201204
    202             rc = rtems_semaphore_create(RTEMS_LIBIO_IOP_SEM(iop - rtems_libio_iops),
    203                                         1, RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
    204                                         &iop->sem);
     205            rc = rtems_semaphore_create(
     206              RTEMS_LIBIO_IOP_SEM(iop - rtems_libio_iops),
     207              1,
     208              RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
     209              RTEMS_NO_PRIORITY,
     210              &iop->sem
     211            );
    205212            if (rc != RTEMS_SUCCESSFUL)
    206213                goto failed;
  • c/src/exec/rtems/headers/asr.h

    r5250ff39 r7f6a24ab  
    5555
    5656typedef struct {
    57   rtems_asr_entry            handler;          /* address of RTEMS_ASR */
    58   rtems_mode          mode_set;         /* RTEMS_ASR mode */
    59   rtems_signal_set signals_posted;   /* signal set */
    60   rtems_signal_set signals_pending;  /* pending signal set */
    61   unsigned32             nest_level;       /* nest level of RTEMS_ASR */
     57  rtems_asr_entry   handler;          /* address of RTEMS_ASR */
     58  Modes_Control     mode_set;         /* RTEMS_ASR mode */
     59  rtems_signal_set  signals_posted;   /* signal set */
     60  rtems_signal_set  signals_pending;  /* pending signal set */
     61  unsigned32        nest_level;       /* nest level of RTEMS_ASR */
    6262}   ASR_Information;
    6363
  • c/src/exec/rtems/headers/attr.h

    r5250ff39 r7f6a24ab  
    2828/* constants */
    2929
    30 #define RTEMS_DEFAULT_ATTRIBUTES            0x00000000
     30#define RTEMS_DEFAULT_ATTRIBUTES  0x00000000
    3131
    3232#define RTEMS_NO_FLOATING_POINT   0x00000000 /* don't use FP HW */
  • c/src/exec/rtems/headers/modes.h

    r5250ff39 r7f6a24ab  
    2929 */
    3030
    31 typedef unsigned32 rtems_mode;
     31typedef unsigned32 Modes_Control;
    3232
    3333/*
     
    7474
    7575STATIC INLINE unsigned32 RTEMS_INTERRUPT_LEVEL (
    76   rtems_mode mode_set
     76  Modes_Control mode_set
    7777);
    7878
     
    8787
    8888STATIC INLINE boolean _Modes_Mask_changed (
    89   rtems_mode mode_set,
    90   rtems_mode masks
     89  Modes_Control mode_set,
     90  Modes_Control masks
    9191);
    9292
     
    101101
    102102STATIC INLINE boolean _Modes_Is_asr_disabled (
    103   rtems_mode mode_set
     103  Modes_Control mode_set
    104104);
    105105
     
    114114
    115115STATIC INLINE boolean _Modes_Is_preempt (
    116   rtems_mode mode_set
     116  Modes_Control mode_set
    117117);
    118118
     
    127127
    128128STATIC INLINE boolean _Modes_Is_timeslice (
    129   rtems_mode mode_set
     129  Modes_Control mode_set
    130130);
    131131
     
    139139
    140140STATIC INLINE ISR_Level _Modes_Get_interrupt_level (
    141   rtems_mode mode_set
     141  Modes_Control mode_set
    142142);
    143143
     
    152152
    153153STATIC INLINE void _Modes_Set_interrupt_level (
    154   rtems_mode mode_set
     154  Modes_Control mode_set
    155155);
    156156
     
    167167
    168168STATIC INLINE void _Modes_Change (
    169   rtems_mode  old_mode_set,
    170   rtems_mode  new_mode_set,
    171   rtems_mode  mask,
    172   rtems_mode *out_mode_set,
    173   rtems_mode *changed
     169  Modes_Control  old_mode_set,
     170  Modes_Control  new_mode_set,
     171  Modes_Control  mask,
     172  Modes_Control *out_mode_set,
     173  Modes_Control *changed
    174174);
    175175
  • c/src/exec/rtems/headers/sem.h

    r5250ff39 r7f6a24ab  
    8383
    8484rtems_status_code rtems_semaphore_create(
    85   rtems_name          name,
    86   unsigned32          count,
    87   rtems_attribute  attribute_set,
    88   Objects_Id         *id
     85  rtems_name            name,
     86  unsigned32            count,
     87  rtems_attribute       attribute_set,
     88  rtems_task_priority   priority_ceiling,
     89  Objects_Id           *id
    8990);
    9091
  • c/src/exec/rtems/headers/signal.h

    r5250ff39 r7f6a24ab  
    3232#include <rtems/object.h>
    3333#include <rtems/status.h>
     34#include <rtems/types.h>
    3435
    3536/*
     
    4647rtems_status_code rtems_signal_catch(
    4748  rtems_asr_entry   asr_handler,
    48   rtems_mode mode_set
     49  rtems_mode        mode_set
    4950);
    5051
  • c/src/exec/rtems/headers/tasks.h

    r5250ff39 r7f6a24ab  
    4848#include <rtems/thread.h>
    4949#include <rtems/threadq.h>
     50#include <rtems/types.h>
    5051
    5152/*
     
    9596
    9697rtems_status_code rtems_task_create(
    97   rtems_name          name,
    98   rtems_task_priority    initial_priority,
    99   unsigned32          stack_size,
    100   rtems_mode       initial_modes,
    101   rtems_attribute  attribute_set,
    102   Objects_Id         *id
     98  rtems_name           name,
     99  rtems_task_priority  initial_priority,
     100  unsigned32           stack_size,
     101  rtems_mode           initial_modes,
     102  rtems_attribute      attribute_set,
     103  Objects_Id          *id
    103104);
    104105
     
    238239
    239240rtems_status_code rtems_task_set_priority(
    240   Objects_Id        id,
     241  Objects_Id           id,
    241242  rtems_task_priority  new_priority,
    242243  rtems_task_priority *old_priority
     
    325326);
    326327
     328/*
     329 *  _RTEMS_Tasks_Priority_to_Core
     330 *
     331 *  DESCRIPTION:
     332 *
     333 *  This function converts an RTEMS API priority into a core priority.
     334 */
     335 
     336STATIC INLINE Priority_Control _RTEMS_Tasks_Priority_to_Core(
     337  rtems_task_priority   priority
     338);
     339
    327340#include <rtems/tasks.inl>
    328341#include <rtems/taskmp.h>
  • c/src/exec/rtems/headers/types.h

    r5250ff39 r7f6a24ab  
    2222
    2323#include <rtems/object.h>
     24#include <rtems/priority.h>
     25#include <rtems/modes.h>
    2426
    2527/*
     
    4951typedef CPU_Interrupt_frame        rtems_interrupt_frame;
    5052
     53/*
     54 *  Define the type for an RTEMS API task priority.
     55 */
     56
     57typedef Priority_Control rtems_task_priority;
     58
     59#define RTEMS_NO_PRIORITY  RTEMS_CURRENT_PRIORITY
     60/*
     61 *  Define the type for an RTEMS API task mode.
     62 */
     63 
     64typedef Modes_Control rtems_mode;
     65
    5166#ifdef __cplusplus
    5267}
  • c/src/exec/rtems/include/rtems/rtems/asr.h

    r5250ff39 r7f6a24ab  
    5555
    5656typedef struct {
    57   rtems_asr_entry            handler;          /* address of RTEMS_ASR */
    58   rtems_mode          mode_set;         /* RTEMS_ASR mode */
    59   rtems_signal_set signals_posted;   /* signal set */
    60   rtems_signal_set signals_pending;  /* pending signal set */
    61   unsigned32             nest_level;       /* nest level of RTEMS_ASR */
     57  rtems_asr_entry   handler;          /* address of RTEMS_ASR */
     58  Modes_Control     mode_set;         /* RTEMS_ASR mode */
     59  rtems_signal_set  signals_posted;   /* signal set */
     60  rtems_signal_set  signals_pending;  /* pending signal set */
     61  unsigned32        nest_level;       /* nest level of RTEMS_ASR */
    6262}   ASR_Information;
    6363
  • c/src/exec/rtems/include/rtems/rtems/attr.h

    r5250ff39 r7f6a24ab  
    2828/* constants */
    2929
    30 #define RTEMS_DEFAULT_ATTRIBUTES            0x00000000
     30#define RTEMS_DEFAULT_ATTRIBUTES  0x00000000
    3131
    3232#define RTEMS_NO_FLOATING_POINT   0x00000000 /* don't use FP HW */
  • c/src/exec/rtems/include/rtems/rtems/modes.h

    r5250ff39 r7f6a24ab  
    2929 */
    3030
    31 typedef unsigned32 rtems_mode;
     31typedef unsigned32 Modes_Control;
    3232
    3333/*
     
    7474
    7575STATIC INLINE unsigned32 RTEMS_INTERRUPT_LEVEL (
    76   rtems_mode mode_set
     76  Modes_Control mode_set
    7777);
    7878
     
    8787
    8888STATIC INLINE boolean _Modes_Mask_changed (
    89   rtems_mode mode_set,
    90   rtems_mode masks
     89  Modes_Control mode_set,
     90  Modes_Control masks
    9191);
    9292
     
    101101
    102102STATIC INLINE boolean _Modes_Is_asr_disabled (
    103   rtems_mode mode_set
     103  Modes_Control mode_set
    104104);
    105105
     
    114114
    115115STATIC INLINE boolean _Modes_Is_preempt (
    116   rtems_mode mode_set
     116  Modes_Control mode_set
    117117);
    118118
     
    127127
    128128STATIC INLINE boolean _Modes_Is_timeslice (
    129   rtems_mode mode_set
     129  Modes_Control mode_set
    130130);
    131131
     
    139139
    140140STATIC INLINE ISR_Level _Modes_Get_interrupt_level (
    141   rtems_mode mode_set
     141  Modes_Control mode_set
    142142);
    143143
     
    152152
    153153STATIC INLINE void _Modes_Set_interrupt_level (
    154   rtems_mode mode_set
     154  Modes_Control mode_set
    155155);
    156156
     
    167167
    168168STATIC INLINE void _Modes_Change (
    169   rtems_mode  old_mode_set,
    170   rtems_mode  new_mode_set,
    171   rtems_mode  mask,
    172   rtems_mode *out_mode_set,
    173   rtems_mode *changed
     169  Modes_Control  old_mode_set,
     170  Modes_Control  new_mode_set,
     171  Modes_Control  mask,
     172  Modes_Control *out_mode_set,
     173  Modes_Control *changed
    174174);
    175175
  • c/src/exec/rtems/include/rtems/rtems/sem.h

    r5250ff39 r7f6a24ab  
    8383
    8484rtems_status_code rtems_semaphore_create(
    85   rtems_name          name,
    86   unsigned32          count,
    87   rtems_attribute  attribute_set,
    88   Objects_Id         *id
     85  rtems_name            name,
     86  unsigned32            count,
     87  rtems_attribute       attribute_set,
     88  rtems_task_priority   priority_ceiling,
     89  Objects_Id           *id
    8990);
    9091
  • c/src/exec/rtems/include/rtems/rtems/signal.h

    r5250ff39 r7f6a24ab  
    3232#include <rtems/object.h>
    3333#include <rtems/status.h>
     34#include <rtems/types.h>
    3435
    3536/*
     
    4647rtems_status_code rtems_signal_catch(
    4748  rtems_asr_entry   asr_handler,
    48   rtems_mode mode_set
     49  rtems_mode        mode_set
    4950);
    5051
  • c/src/exec/rtems/include/rtems/rtems/tasks.h

    r5250ff39 r7f6a24ab  
    4848#include <rtems/thread.h>
    4949#include <rtems/threadq.h>
     50#include <rtems/types.h>
    5051
    5152/*
     
    9596
    9697rtems_status_code rtems_task_create(
    97   rtems_name          name,
    98   rtems_task_priority    initial_priority,
    99   unsigned32          stack_size,
    100   rtems_mode       initial_modes,
    101   rtems_attribute  attribute_set,
    102   Objects_Id         *id
     98  rtems_name           name,
     99  rtems_task_priority  initial_priority,
     100  unsigned32           stack_size,
     101  rtems_mode           initial_modes,
     102  rtems_attribute      attribute_set,
     103  Objects_Id          *id
    103104);
    104105
     
    238239
    239240rtems_status_code rtems_task_set_priority(
    240   Objects_Id        id,
     241  Objects_Id           id,
    241242  rtems_task_priority  new_priority,
    242243  rtems_task_priority *old_priority
     
    325326);
    326327
     328/*
     329 *  _RTEMS_Tasks_Priority_to_Core
     330 *
     331 *  DESCRIPTION:
     332 *
     333 *  This function converts an RTEMS API priority into a core priority.
     334 */
     335 
     336STATIC INLINE Priority_Control _RTEMS_Tasks_Priority_to_Core(
     337  rtems_task_priority   priority
     338);
     339
    327340#include <rtems/tasks.inl>
    328341#include <rtems/taskmp.h>
  • c/src/exec/rtems/include/rtems/rtems/types.h

    r5250ff39 r7f6a24ab  
    2222
    2323#include <rtems/object.h>
     24#include <rtems/priority.h>
     25#include <rtems/modes.h>
    2426
    2527/*
     
    4951typedef CPU_Interrupt_frame        rtems_interrupt_frame;
    5052
     53/*
     54 *  Define the type for an RTEMS API task priority.
     55 */
     56
     57typedef Priority_Control rtems_task_priority;
     58
     59#define RTEMS_NO_PRIORITY  RTEMS_CURRENT_PRIORITY
     60/*
     61 *  Define the type for an RTEMS API task mode.
     62 */
     63 
     64typedef Modes_Control rtems_mode;
     65
    5166#ifdef __cplusplus
    5267}
  • c/src/exec/rtems/inline/modes.inl

    r5250ff39 r7f6a24ab  
    2424
    2525STATIC INLINE unsigned32 RTEMS_INTERRUPT_LEVEL (
    26   rtems_mode mode_set
     26  Modes_Control mode_set
    2727)
    2828{
     
    3737
    3838STATIC INLINE boolean _Modes_Mask_changed (
    39   rtems_mode mode_set,
    40   rtems_mode masks
     39  Modes_Control mode_set,
     40  Modes_Control masks
    4141)
    4242{
     
    5151
    5252STATIC INLINE boolean _Modes_Is_asr_disabled (
    53   rtems_mode mode_set
     53  Modes_Control mode_set
    5454)
    5555{
     
    6464
    6565STATIC INLINE boolean _Modes_Is_preempt (
    66   rtems_mode mode_set
     66  Modes_Control mode_set
    6767)
    6868{
     
    7777
    7878STATIC INLINE boolean _Modes_Is_timeslice (
    79   rtems_mode mode_set
     79  Modes_Control mode_set
    8080)
    8181{
     
    9191
    9292STATIC INLINE ISR_Level _Modes_Get_interrupt_level (
    93   rtems_mode mode_set
     93  Modes_Control mode_set
    9494)
    9595{
     
    104104
    105105STATIC INLINE void _Modes_Set_interrupt_level (
    106   rtems_mode mode_set
     106  Modes_Control mode_set
    107107)
    108108{
     
    117117
    118118STATIC INLINE void _Modes_Change (
    119   rtems_mode  old_mode_set,
    120   rtems_mode  new_mode_set,
    121   rtems_mode  mask,
    122   rtems_mode *out_mode_set,
    123   rtems_mode *changed
     119  Modes_Control  old_mode_set,
     120  Modes_Control  new_mode_set,
     121  Modes_Control  mask,
     122  Modes_Control *out_mode_set,
     123  Modes_Control *changed
    124124)
    125125{
    126   rtems_mode _out_mode;
     126  Modes_Control _out_mode;
    127127
    128128  _out_mode      =  old_mode_set;
  • c/src/exec/rtems/inline/rtems/rtems/modes.inl

    r5250ff39 r7f6a24ab  
    2424
    2525STATIC INLINE unsigned32 RTEMS_INTERRUPT_LEVEL (
    26   rtems_mode mode_set
     26  Modes_Control mode_set
    2727)
    2828{
     
    3737
    3838STATIC INLINE boolean _Modes_Mask_changed (
    39   rtems_mode mode_set,
    40   rtems_mode masks
     39  Modes_Control mode_set,
     40  Modes_Control masks
    4141)
    4242{
     
    5151
    5252STATIC INLINE boolean _Modes_Is_asr_disabled (
    53   rtems_mode mode_set
     53  Modes_Control mode_set
    5454)
    5555{
     
    6464
    6565STATIC INLINE boolean _Modes_Is_preempt (
    66   rtems_mode mode_set
     66  Modes_Control mode_set
    6767)
    6868{
     
    7777
    7878STATIC INLINE boolean _Modes_Is_timeslice (
    79   rtems_mode mode_set
     79  Modes_Control mode_set
    8080)
    8181{
     
    9191
    9292STATIC INLINE ISR_Level _Modes_Get_interrupt_level (
    93   rtems_mode mode_set
     93  Modes_Control mode_set
    9494)
    9595{
     
    104104
    105105STATIC INLINE void _Modes_Set_interrupt_level (
    106   rtems_mode mode_set
     106  Modes_Control mode_set
    107107)
    108108{
     
    117117
    118118STATIC INLINE void _Modes_Change (
    119   rtems_mode  old_mode_set,
    120   rtems_mode  new_mode_set,
    121   rtems_mode  mask,
    122   rtems_mode *out_mode_set,
    123   rtems_mode *changed
     119  Modes_Control  old_mode_set,
     120  Modes_Control  new_mode_set,
     121  Modes_Control  mask,
     122  Modes_Control *out_mode_set,
     123  Modes_Control *changed
    124124)
    125125{
    126   rtems_mode _out_mode;
     126  Modes_Control _out_mode;
    127127
    128128  _out_mode      =  old_mode_set;
  • c/src/exec/rtems/inline/rtems/rtems/tasks.inl

    r5250ff39 r7f6a24ab  
    4444)
    4545{
    46   _Objects_Free( &_RTEMS_tasks_Information, &the_task->Object );
     46  _Objects_Free(
     47    _Objects_Get_information( the_task->Object.id ),
     48    &the_task->Object
     49  );
    4750}
    4851
     
    6265  state = the_thread->current_state;
    6366
     67/* XXX do this with the object class */
    6468  if ( _States_Is_waiting_on_thread_queue( state ) ) {
    6569    if ( _States_Is_waiting_for_rpc_reply( state ) &&
     
    9296}
    9397
     98/*PAGE
     99 *
     100 *  _RTEMS_Tasks_Priority_to_Core
     101 */
     102 
     103STATIC INLINE Priority_Control _RTEMS_Tasks_Priority_to_Core(
     104  rtems_task_priority   priority
     105)
     106{
     107  return (Priority_Control) priority;
     108}
     109
    94110#endif
    95111/* end of include file */
  • c/src/exec/rtems/inline/tasks.inl

    r5250ff39 r7f6a24ab  
    4444)
    4545{
    46   _Objects_Free( &_RTEMS_tasks_Information, &the_task->Object );
     46  _Objects_Free(
     47    _Objects_Get_information( the_task->Object.id ),
     48    &the_task->Object
     49  );
    4750}
    4851
     
    6265  state = the_thread->current_state;
    6366
     67/* XXX do this with the object class */
    6468  if ( _States_Is_waiting_on_thread_queue( state ) ) {
    6569    if ( _States_Is_waiting_for_rpc_reply( state ) &&
     
    9296}
    9397
     98/*PAGE
     99 *
     100 *  _RTEMS_Tasks_Priority_to_Core
     101 */
     102 
     103STATIC INLINE Priority_Control _RTEMS_Tasks_Priority_to_Core(
     104  rtems_task_priority   priority
     105)
     106{
     107  return (Priority_Control) priority;
     108}
     109
    94110#endif
    95111/* end of include file */
  • c/src/exec/rtems/macros/modes.inl

    r5250ff39 r7f6a24ab  
    8989#define _Modes_Change( _old_mode_set, _new_mode_set, \
    9090                       _mask, _out_mode_set, _changed ) \
    91   { rtems_mode _out_mode; \
     91  { Modes_Control _out_mode; \
    9292    \
    9393    _out_mode         =  (_old_mode_set); \
  • c/src/exec/rtems/macros/rtems/rtems/modes.inl

    r5250ff39 r7f6a24ab  
    8989#define _Modes_Change( _old_mode_set, _new_mode_set, \
    9090                       _mask, _out_mode_set, _changed ) \
    91   { rtems_mode _out_mode; \
     91  { Modes_Control _out_mode; \
    9292    \
    9393    _out_mode         =  (_old_mode_set); \
  • c/src/exec/rtems/macros/rtems/rtems/tasks.inl

    r5250ff39 r7f6a24ab  
    8484  }
    8585
     86/*PAGE
     87 *
     88 *  _RTEMS_Tasks_Priority_to_Core
     89 */
     90 
     91#define _RTEMS_Tasks_Priority_to_Core( _priority ) \
     92  ((Priority_Control) (_priority))
     93
    8694#endif
    8795/* end of include file */
  • c/src/exec/rtems/macros/tasks.inl

    r5250ff39 r7f6a24ab  
    8484  }
    8585
     86/*PAGE
     87 *
     88 *  _RTEMS_Tasks_Priority_to_Core
     89 */
     90 
     91#define _RTEMS_Tasks_Priority_to_Core( _priority ) \
     92  ((Priority_Control) (_priority))
     93
    8694#endif
    8795/* end of include file */
  • c/src/exec/rtems/optman/no-sem.c

    r5250ff39 r7f6a24ab  
    3232
    3333rtems_status_code rtems_semaphore_create(
    34   rtems_name          name,
    35   unsigned32          count,
    36   rtems_attribute  attribute_set,
    37   Objects_Id         *id
     34  rtems_name            name,
     35  unsigned32            count,
     36  rtems_attribute       attribute_set,
     37  rtems_task_priority   priority_ceiling,
     38  Objects_Id           *id
    3839)
    3940{
  • c/src/exec/rtems/optman/no-signal.c

    r5250ff39 r7f6a24ab  
    2323rtems_status_code rtems_signal_catch(
    2424  rtems_asr_entry   handler,
    25   rtems_mode mode_set
     25  rtems_mode        mode_set
    2626)
    2727{
     
    3030
    3131rtems_status_code rtems_signal_send(
    32   Objects_Id             id,
     32  rtems_id         id,
    3333  rtems_signal_set signal_set
    3434)
  • c/src/exec/rtems/src/event.c

    r5250ff39 r7f6a24ab  
    5757      );
    5858    case OBJECTS_LOCAL:
    59       _Event_sets_Post( event_in, &the_thread->pending_events );
     59      _Event_sets_Post( event_in, &the_thread->RTEMS_API->pending_events );
    6060      _Event_Surrender( the_thread );
    6161      _Thread_Enable_dispatch();
     
    9292{
    9393  if ( _Event_sets_Is_empty( event_in ) ) {
    94     *event_out = _Thread_Executing->pending_events;
     94    *event_out = _Thread_Executing->RTEMS_API->pending_events;
    9595    return( RTEMS_SUCCESSFUL );
    9696  }
     
    9999  _Event_Seize( event_in, option_set, ticks );
    100100  _Thread_Enable_dispatch();
    101   *event_out = _Thread_Executing->events_out;
     101  *event_out = _Thread_Executing->RTEMS_API->events_out;
    102102  return( _Thread_Executing->Wait.return_code );
    103103}
  • c/src/exec/rtems/src/mp.c

    r5250ff39 r7f6a24ab  
    5959  _Event_sets_Post(
    6060    RTEMS_EVENT_0,
    61     &_Internal_threads_System_initialization_thread->pending_events
     61    &_Internal_threads_System_initialization_thread->RTEMS_API->pending_events
    6262  );
    6363  _Event_Surrender( _Internal_threads_System_initialization_thread );
  • c/src/exec/rtems/src/msg.c

    r5250ff39 r7f6a24ab  
    182182
    183183  if ( _Attributes_Is_global( attribute_set ) &&
    184        !( _Objects_MP_Open( &_Message_queue_Information, name,
     184       !( _Objects_MP_Allocate_and_open( &_Message_queue_Information, name,
    185185                            the_message_queue->Object.id, FALSE ) ) ) {
    186186    _Message_queue_Free( the_message_queue );
     
    196196  _Chain_Initialize_empty( &the_message_queue->Pending_messages );
    197197
    198   _Thread_queue_Initialize( &the_message_queue->Wait_queue, attribute_set,
    199                             STATES_WAITING_FOR_MESSAGE );
     198  _Thread_queue_Initialize(
     199    &the_message_queue->Wait_queue,
     200    OBJECTS_RTEMS_MESSAGE_QUEUES,
     201    _Attributes_Is_priority( attribute_set ) ?
     202       THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
     203    STATES_WAITING_FOR_MESSAGE,
     204    _Message_queue_MP_Send_extract_proxy
     205  );
    200206
    201207  _Objects_Open(
  • c/src/exec/rtems/src/msgmp.c

    r5250ff39 r7f6a24ab  
    260260    case MESSAGE_QUEUE_MP_ANNOUNCE_CREATE:
    261261
    262       ignored = _Objects_MP_Open(
     262      ignored = _Objects_MP_Allocate_and_open(
    263263                  &_Message_queue_Information,
    264264                  the_packet->name,
  • c/src/exec/rtems/src/part.c

    r5250ff39 r7f6a24ab  
    108108
    109109  if ( _Attributes_Is_global( attribute_set ) &&
    110        !( _Objects_MP_Open( &_Partition_Information, name,
     110       !( _Objects_MP_Allocate_and_open( &_Partition_Information, name,
    111111                            the_partition->Object.id, FALSE ) ) ) {
    112112    _Partition_Free( the_partition );
  • c/src/exec/rtems/src/partmp.c

    r5250ff39 r7f6a24ab  
    185185    case PARTITION_MP_ANNOUNCE_CREATE:
    186186
    187       ignored = _Objects_MP_Open(
     187      ignored = _Objects_MP_Allocate_and_open(
    188188                  &_Partition_Information,
    189189                  the_packet->name,
  • c/src/exec/rtems/src/region.c

    r5250ff39 r7f6a24ab  
    114114
    115115  _Thread_queue_Initialize(
    116      &the_region->Wait_queue, attribute_set, STATES_WAITING_FOR_SEGMENT );
     116    &the_region->Wait_queue,
     117    OBJECTS_RTEMS_REGIONS,
     118    _Attributes_Is_priority( attribute_set ) ?
     119       THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
     120    STATES_WAITING_FOR_SEGMENT,
     121    _Region_MP_Send_extract_proxy
     122  );
    117123
    118124  _Objects_Open( &_Region_Information, &the_region->Object, &name );
  • c/src/exec/rtems/src/regionmp.c

    r5250ff39 r7f6a24ab  
    191191    case REGION_MP_ANNOUNCE_CREATE:
    192192
    193       ignored = _Objects_MP_Open(
     193      ignored = _Objects_MP_Allocate_and_open(
    194194                  &_Region_Information,
    195195                  the_packet->name,
  • c/src/exec/rtems/src/sem.c

    r5250ff39 r7f6a24ab  
    8888
    8989rtems_status_code rtems_semaphore_create(
    90   rtems_name          name,
    91   unsigned32          count,
    92   rtems_attribute  attribute_set,
    93   Objects_Id         *id
     90  rtems_name            name,
     91  unsigned32            count,
     92  rtems_attribute       attribute_set,
     93  rtems_task_priority   priority_ceiling,
     94  Objects_Id           *id
    9495)
    9596{
     
    128129
    129130  if ( _Attributes_Is_global( attribute_set ) &&
    130        !( _Objects_MP_Open( &_Semaphore_Information, name,
     131       !( _Objects_MP_Allocate_and_open( &_Semaphore_Information, name,
    131132                            the_semaphore->Object.id, FALSE ) ) ) {
    132133    _Semaphore_Free( the_semaphore );
     
    149150  }
    150151
    151   _Thread_queue_Initialize( &the_semaphore->Wait_queue,
    152                             attribute_set, STATES_WAITING_FOR_SEMAPHORE );
     152  _Thread_queue_Initialize(
     153    &the_semaphore->Wait_queue,
     154    OBJECTS_RTEMS_SEMAPHORES,
     155    _Attributes_Is_priority( attribute_set ) ?
     156       THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
     157    STATES_WAITING_FOR_SEMAPHORE,
     158    _Semaphore_MP_Send_extract_proxy
     159  );
    153160
    154161  _Objects_Open( &_Semaphore_Information, &the_semaphore->Object, &name );
  • c/src/exec/rtems/src/semmp.c

    r5250ff39 r7f6a24ab  
    188188    case SEMAPHORE_MP_ANNOUNCE_CREATE:
    189189
    190       ignored = _Objects_MP_Open(
     190      ignored = _Objects_MP_Allocate_and_open(
    191191                  &_Semaphore_Information,
    192192                  the_packet->name,
  • c/src/exec/rtems/src/signal.c

    r5250ff39 r7f6a24ab  
    3838
    3939rtems_status_code rtems_signal_catch(
    40   rtems_asr_entry   handler,
    41   rtems_mode mode_set
     40  rtems_asr_entry   asr_handler,
     41  rtems_mode        mode_set
    4242)
    4343{
    4444  Thread_Control *executing;
    4545
     46/* XXX normalize mode */
    4647  executing = _Thread_Executing;
    4748  _Thread_Disable_dispatch(); /* cannot reschedule while */
    4849                              /*   the thread is inconsistent */
    4950
    50   if ( ! _ASR_Is_null_handler( handler ) ) {
    51     executing->Signal.mode_set = mode_set;
    52     executing->Signal.handler  = handler;
     51  if ( !_ASR_Is_null_handler( asr_handler ) ) {
     52    executing->RTEMS_API->Signal.mode_set = mode_set;
     53    executing->RTEMS_API->Signal.handler  = asr_handler;
    5354  }
    5455  else
    55     _ASR_Initialize( &executing->Signal );
     56    _ASR_Initialize( &executing->RTEMS_API->Signal );
    5657  _Thread_Enable_dispatch();
    5758  return( RTEMS_SUCCESSFUL );
     
    9293      );
    9394    case OBJECTS_LOCAL:
    94       if ( ! _ASR_Is_null_handler( the_thread->Signal.handler ) ) {
     95      if ( ! _ASR_Is_null_handler( the_thread->RTEMS_API->Signal.handler ) ) {
    9596        if ( _Modes_Is_asr_disabled( the_thread->current_modes ) )
    96           _ASR_Post_signals( signal_set, &the_thread->Signal.signals_pending );
     97          _ASR_Post_signals(
     98            signal_set, &the_thread->RTEMS_API->Signal.signals_pending );
    9799        else {
    98           _ASR_Post_signals( signal_set, &the_thread->Signal.signals_posted );
     100          _ASR_Post_signals(
     101            signal_set, &the_thread->RTEMS_API->Signal.signals_posted );
    99102          if ( _ISR_Is_in_progress() && _Thread_Is_executing( the_thread ) )
    100103            _ISR_Signals_to_thread_executing = TRUE;
  • c/src/exec/rtems/src/taskmp.c

    r5250ff39 r7f6a24ab  
    194194    case RTEMS_TASKS_MP_ANNOUNCE_CREATE:
    195195
    196       ignored = _Objects_MP_Open(
     196      ignored = _Objects_MP_Allocate_and_open(
    197197                  &_RTEMS_tasks_Information,
    198198                  the_packet->name,
  • c/src/exec/rtems/src/tasks.c

    r5250ff39 r7f6a24ab  
    8787{
    8888  register Thread_Control *the_thread;
    89   unsigned32               actual_stack_size;
    90   unsigned32               memory_needed;
    91   void                    *memory;
     89  Objects_MP_Control      *the_global_object = NULL;
     90  boolean                  is_fp;
     91  boolean                  is_global;
    9292  rtems_attribute          the_attribute_set;
     93  Priority_Control         core_priority;
     94 
    9395
    9496  if ( !rtems_is_name_valid( name ) )
    9597    return ( RTEMS_INVALID_NAME );
     98
     99  /*
     100   *  Core Thread Initialize insures we get the minimum amount of
     101   *  stack space.
     102   */
    96103
    97104#if 0
     
    100107#endif
    101108
    102   if ( !_Stack_Is_enough( stack_size ) )
    103     actual_stack_size = RTEMS_MINIMUM_STACK_SIZE;
    104   else
    105     actual_stack_size = stack_size;
     109  /*
     110   *  Validate the RTEMS API priority and convert it to the core priority range.
     111   */
    106112
    107113  if ( !_Priority_Is_valid( initial_priority ) )
    108114    return( RTEMS_INVALID_PRIORITY );
     115
     116  core_priority = _RTEMS_Tasks_Priority_to_Core( initial_priority );
    109117
    110118  /*
     
    121129    _Attributes_Clear( the_attribute_set, ATTRIBUTES_NOT_SUPPORTED );
    122130
    123   if ( _Attributes_Is_global( the_attribute_set ) &&
    124        !_Configuration_Is_multiprocessing() )
    125     return( RTEMS_MP_NOT_CONFIGURED );
    126 
    127   _Thread_Disable_dispatch();          /* to prevent deletion */
     131  if ( _Attributes_Is_floating_point( the_attribute_set ) )
     132    is_fp = TRUE;
     133  else
     134    is_fp = FALSE;
     135
     136  if ( _Attributes_Is_global( the_attribute_set ) ) {
     137
     138    is_global = TRUE;
     139
     140    if ( !_Configuration_Is_multiprocessing() )
     141      return( RTEMS_MP_NOT_CONFIGURED );
     142
     143  } else
     144    is_global = FALSE;
     145
     146  /*
     147   *  Make sure system is MP if this task is global
     148   */
     149
     150  /*
     151   *  Disable dispatch for protection
     152   */
     153
     154  _Thread_Disable_dispatch();
     155
     156  /*
     157   *  Allocate the thread control block and -- if the task is global --
     158   *  allocate a global object control block.
     159   *
     160   *  NOTE:  This routine does not use the combined allocate and open
     161   *         global object routine because this results in a lack of
     162   *         control over when memory is allocated and can be freed in
     163   *         the event of an error.
     164   */
    128165
    129166  the_thread = _RTEMS_tasks_Allocate();
     
    134171  }
    135172
    136   actual_stack_size = _Stack_Adjust_size( actual_stack_size );
    137   memory_needed = actual_stack_size;
    138 
    139   if ( _Attributes_Is_floating_point( the_attribute_set ) )
    140     memory_needed += CONTEXT_FP_SIZE;
    141 
    142   memory = _Workspace_Allocate( memory_needed );
    143 
    144   if ( !memory ) {
     173  if ( is_global ) {
     174    the_global_object = _Objects_MP_Allocate_global_object();
     175
     176    if ( _Objects_MP_Is_null_global_object( the_global_object ) ) {
     177      _RTEMS_tasks_Free( the_thread );
     178      _Thread_Enable_dispatch();
     179      return( RTEMS_TOO_MANY );
     180    }
     181  }
     182
     183#if 0
     184  /*
     185   *  Allocate and initialize the RTEMS API specific information
     186   */
     187
     188  the_thread->RTEMS_API = _Workspace_Allocate( sizeof( RTEMS_API_Control ) );
     189
     190  if ( !the_thread->RTEMS_API ) {
     191    _RTEMS_tasks_Free( the_thread );
     192    if ( is_global )
     193    _Objects_MP_Free_global_object( the_global_object );
     194    _Thread_Enable_dispatch();
     195    return( RTEMS_UNSATISFIED );
     196  }
     197
     198  the_thread->RTEMS_API->pending_events         = EVENT_SETS_NONE_PENDING;
     199  _ASR_Initialize( &the_thread->RTEMS_API->Signal );
     200#endif
     201
     202  /*
     203   *  Initialize the core thread for this task.
     204   */
     205
     206/* XXX normalize mode */
     207
     208  if ( !_Thread_Initialize( &_RTEMS_tasks_Information, the_thread,
     209         NULL, stack_size, is_fp, core_priority, initial_modes, &name ) ) {
     210    if ( is_global )
     211      _Objects_MP_Free_global_object( the_global_object );
    145212    _RTEMS_tasks_Free( the_thread );
    146213    _Thread_Enable_dispatch();
     
    148215  }
    149216
    150   /*
    151    *  Stack is put in the lower address regions of the allocated memory.
    152    *  The optional floating point context area goes into the higher part
    153    *  of the allocated memory.
    154    */
    155 
    156   _Stack_Initialize(
    157      &the_thread->Start.Initial_stack, memory, actual_stack_size );
    158 
    159   if ( _Attributes_Is_floating_point( the_attribute_set ) )
    160     the_thread->fp_context = _Context_Fp_start( memory, actual_stack_size );
    161   else
    162     the_thread->fp_context = NULL;
    163 
    164   the_thread->Start.fp_context = the_thread->fp_context;
    165 
    166   if ( _Attributes_Is_global( the_attribute_set ) &&
    167        !( _Objects_MP_Open( &_RTEMS_tasks_Information, name,
    168                             the_thread->Object.id, FALSE ) ) ) {
    169     _RTEMS_tasks_Free( the_thread );
    170     (void) _Workspace_Free( memory );
    171     _Thread_Enable_dispatch();
    172     return( RTEMS_TOO_MANY );
    173   }
    174 
    175   the_thread->attribute_set          = the_attribute_set;
    176   the_thread->current_state          = STATES_DORMANT;
    177   the_thread->current_modes          = initial_modes;
    178   the_thread->pending_events         = EVENT_SETS_NONE_PENDING;
    179   the_thread->resource_count         = 0;
    180   the_thread->real_priority          = initial_priority;
    181   the_thread->Start.initial_priority = initial_priority;
    182   the_thread->Start.initial_modes    = initial_modes;
    183 
    184   _Thread_Set_priority( the_thread, initial_priority );
    185 
    186   _ASR_Initialize( &the_thread->Signal );
    187 
    188   _Objects_Open( &_RTEMS_tasks_Information, &the_thread->Object, &name );
    189 
    190217  *id = the_thread->Object.id;
    191218
    192   _User_extensions_Task_create( the_thread );
    193 
    194   if ( _Attributes_Is_global( the_attribute_set ) )
     219  if ( is_global ) {
     220
     221    the_thread->RTEMS_API->is_global = TRUE;
     222
     223    _Objects_MP_Open(
     224      &_RTEMS_tasks_Information,
     225      the_global_object,
     226      name,
     227      the_thread->Object.id
     228    );
     229
    195230    _RTEMS_tasks_MP_Send_process_packet(
    196231      RTEMS_TASKS_MP_ANNOUNCE_CREATE,
     
    199234    );
    200235
     236   }
     237
    201238  _Thread_Enable_dispatch();
    202239  return( RTEMS_SUCCESSFUL );
     
    253290
    254291rtems_status_code rtems_task_start(
    255   Objects_Id   id,
     292  rtems_id         id,
    256293  rtems_task_entry entry_point,
    257   unsigned32   argument
     294  unsigned32       argument
    258295)
    259296{
     
    272309      return( RTEMS_ILLEGAL_ON_REMOTE_OBJECT );
    273310    case OBJECTS_LOCAL:
    274       if ( _States_Is_dormant( the_thread->current_state ) ) {
    275 
    276         the_thread->Start.entry_point      = entry_point;
    277         the_thread->Start.initial_argument = argument;
    278 
    279         _Thread_Load_environment( the_thread );
    280 
    281         _Thread_Ready( the_thread );
    282 
    283         _User_extensions_Task_start( the_thread );
    284 
     311      if ( _Thread_Start(
     312             the_thread, THREAD_START_NUMERIC, entry_point, NULL, argument ) ) {
    285313        _Thread_Enable_dispatch();
    286314        return( RTEMS_SUCCESSFUL );
     
    317345{
    318346  register Thread_Control *the_thread;
    319   Objects_Locations               location;
     347  Objects_Locations        location;
    320348
    321349  the_thread = _Thread_Get( id, &location );
     
    327355      return( RTEMS_ILLEGAL_ON_REMOTE_OBJECT );
    328356    case OBJECTS_LOCAL:
    329       if ( !_States_Is_dormant( the_thread->current_state ) ) {
    330 
    331         _Thread_Set_transient( the_thread );
    332         _ASR_Initialize( &the_thread->Signal );
    333         the_thread->pending_events = EVENT_SETS_NONE_PENDING;
    334         the_thread->resource_count = 0;
    335         the_thread->current_modes  = the_thread->Start.initial_modes;
    336         the_thread->Start.initial_argument = argument;
    337 
    338         _RTEMS_tasks_Cancel_wait( the_thread );
    339 
    340         if ( the_thread->current_priority !=
    341                          the_thread->Start.initial_priority ) {
    342           the_thread->real_priority = the_thread->Start.initial_priority;
    343           _Thread_Set_priority( the_thread,
    344              the_thread->Start.initial_priority );
    345         }
    346 
    347         _Thread_Load_environment( the_thread );
    348 
    349         _Thread_Ready( the_thread );
    350 
    351         _User_extensions_Task_restart( the_thread );
    352 
    353         if ( _Thread_Is_executing ( the_thread ) )
    354           _Thread_Restart_self();
     357      if ( _Thread_Restart( the_thread, NULL, argument ) ) {
     358
     359        /*  XXX until these are in an API extension they are too late. */
     360        _ASR_Initialize( &the_thread->RTEMS_API->Signal );
     361        the_thread->RTEMS_API->pending_events = EVENT_SETS_NONE_PENDING;
    355362
    356363        _Thread_Enable_dispatch();
     
    397404      return( RTEMS_ILLEGAL_ON_REMOTE_OBJECT );
    398405    case OBJECTS_LOCAL:
    399       _Objects_Close( &_RTEMS_tasks_Information, &the_thread->Object );
    400 
    401       _Thread_Set_state( the_thread, STATES_TRANSIENT );
    402 
    403       _User_extensions_Task_delete( the_thread );
    404 
    405 #if ( CPU_USE_DEFERRED_FP_SWITCH == TRUE )
    406       if ( _Thread_Is_allocated_fp( the_thread ) )
    407         _Thread_Deallocate_fp();
    408 #endif
    409       the_thread->fp_context = NULL;
    410 
    411       _RTEMS_tasks_Cancel_wait( the_thread );
    412 
    413       (void) _Workspace_Free( the_thread->Start.Initial_stack.area );
     406      _Thread_Close( &_RTEMS_tasks_Information, the_thread );
     407
     408      /* XXX */
     409      (void) _Workspace_Free( the_thread->RTEMS_API );
    414410
    415411      _RTEMS_tasks_Free( the_thread );
    416412
    417       if ( _Attributes_Is_global( the_thread->attribute_set ) ) {
     413      if ( _Attributes_Is_global( the_thread->RTEMS_API->is_global ) ) {
    418414
    419415        _Objects_MP_Close( &_RTEMS_tasks_Information, the_thread->Object.id );
     
    552548
    553549rtems_status_code rtems_task_set_priority(
    554   Objects_Id        id,
     550  Objects_Id           id,
    555551  rtems_task_priority  new_priority,
    556552  rtems_task_priority *old_priority
     
    663659  if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ||
    664660       _Objects_Are_ids_equal( id, _Thread_Executing->Object.id ) ) {
    665       *note = _Thread_Executing->Notepads[ notepad ];
     661      *note = _Thread_Executing->RTEMS_API->Notepads[ notepad ];
    666662      return( RTEMS_SUCCESSFUL );
    667663  }
     
    682678      );
    683679    case OBJECTS_LOCAL:
    684       *note= the_thread->Notepads[ notepad ];
     680      *note= the_thread->RTEMS_API->Notepads[ notepad ];
    685681      _Thread_Enable_dispatch();
    686682      return( RTEMS_SUCCESSFUL );
     
    730726  if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ||
    731727       _Objects_Are_ids_equal( id, _Thread_Executing->Object.id ) ) {
    732       _Thread_Executing->Notepads[ notepad ] = note;
     728      _Thread_Executing->RTEMS_API->Notepads[ notepad ] = note;
    733729      return( RTEMS_SUCCESSFUL );
    734730  }
     
    748744
    749745    case OBJECTS_LOCAL:
    750       the_thread->Notepads[ notepad ] = note;
     746      the_thread->RTEMS_API->Notepads[ notepad ] = note;
    751747      _Thread_Enable_dispatch();
    752748      return( RTEMS_SUCCESSFUL );
  • c/src/exec/score/headers/mppkt.h

    r5250ff39 r7f6a24ab  
    6565  Objects_Id              id;
    6666  Objects_Id              source_tid;
    67   rtems_task_priority     source_priority;
     67  Priority_Control        source_priority;
    6868  rtems_status_code       return_code;
    6969  unsigned32              length;
  • c/src/exec/score/headers/object.h

    r5250ff39 r7f6a24ab  
    350350
    351351/*
     352 *  _Objects_Get_information
     353 *
     354 *  DESCRIPTION:
     355 *
     356 *  Returns the information control block for the class of objects
     357 *  corresponding to this id.
     358 */
     359
     360Objects_Information *_Objects_Get_information(
     361  Objects_Id  id
     362);
     363 
     364/*
    352365 *  _Objects_Build_id
    353366 *
     
    405418
    406419/*
     420 *  _Objects_Is_class_valid
     421 *
     422 *  DESCRIPTION:
     423 *
     424 *  This function returns TRUE if the class is valid.
     425 *
     426 */
     427 
     428STATIC INLINE boolean _Objects_Is_class_valid(
     429  Objects_Classes the_class
     430);
     431
     432/*
    407433 *  _Objects_Is_local_node
    408434 *
  • c/src/exec/score/headers/objectmp.h

    r5250ff39 r7f6a24ab  
    8282);
    8383
     84/*PAGE
     85 *
     86 *  _Objects_MP_Open
     87 *
     88 *  DESCRIPTION:
     89 *
     90 *  This routine place the specified global object in the
     91 *  specified information table. 
     92 */
     93 
     94void _Objects_MP_Open (
     95  Objects_Information *information,
     96  Objects_MP_Control  *the_global_object,
     97  unsigned32           the_name,      /* XXX -- wrong for variable */
     98  Objects_Id           the_id
     99);
     100
    84101/*
    85  *  _Objects_MP_Open
     102 *  _Objects_MP_Allocate_and_open
    86103 *
    87104 *  DESCRIPTION:
     
    93110 */
    94111
    95 boolean _Objects_MP_Open (
     112boolean _Objects_MP_Allocate_and_open (
    96113  Objects_Information *information,
    97114  unsigned32           the_name,     /* XXX -- wrong for variable length */
  • c/src/exec/score/headers/priority.h

    r5250ff39 r7f6a24ab  
    3030 */
    3131
    32 typedef unsigned32 rtems_task_priority;
     32typedef unsigned32 Priority_Control;
    3333
    3434#define RTEMS_MINIMUM_PRIORITY      1         /* highest thread priority */
     
    9393
    9494STATIC INLINE boolean _Priority_Is_valid (
    95   rtems_task_priority the_priority
     95  Priority_Control the_priority
    9696);
    9797
     
    105105
    106106STATIC INLINE unsigned32 _Priority_Major (
    107   rtems_task_priority the_priority
     107  Priority_Control the_priority
    108108);
    109109
     
    117117
    118118STATIC INLINE unsigned32 _Priority_Minor (
    119   rtems_task_priority the_priority
     119  Priority_Control the_priority
    120120);
    121121
     
    156156 */
    157157
    158 STATIC INLINE rtems_task_priority _Priority_Get_highest( void );
     158STATIC INLINE Priority_Control _Priority_Get_highest( void );
    159159
    160160/*
     
    170170STATIC INLINE void _Priority_Initialize_information(
    171171  Priority_Information *the_priority_map,
    172   rtems_task_priority      new_priority
     172  Priority_Control      new_priority
    173173);
    174174
     
    183183
    184184STATIC INLINE boolean _Priority_Is_group_empty (
    185   rtems_task_priority      the_priority
     185  Priority_Control      the_priority
    186186);
    187187
  • c/src/exec/score/headers/thread.h

    r5250ff39 r7f6a24ab  
    8787                   );
    8888
    89 typedef Thread ( *Thread_Entry )(
    90                       Thread_Argument
    91                    );
     89typedef Thread ( *Thread_Entry )( );
    9290
    9391/*
     
    9694 */
    9795
     96typedef enum {
     97  THREAD_START_NUMERIC,
     98  THREAD_START_POINTER,
     99  THREAD_START_BOTH_POINTER_FIRST,
     100  THREAD_START_BOTH_NUMERIC_FIRST
     101} Thread_Start_types;
     102
    98103typedef struct {
    99104  Thread_Entry         entry_point;      /* starting thread address         */
    100   unsigned32           initial_argument; /* initial argument                */
    101   rtems_mode           initial_modes;    /* initial mode                    */
    102   rtems_task_priority  initial_priority; /* initial priority                */
     105  Thread_Start_types   prototype;        /* how task is invoked             */
     106  void                *pointer_argument; /* pointer argument                */
     107  unsigned32           numeric_argument; /* numeric argument                */
     108  Modes_Control        initial_modes;    /* initial mode                    */
     109  Priority_Control     initial_priority; /* initial priority                */
     110  Stack_Control        Initial_stack;    /* stack information               */
    103111  void                *fp_context;       /* initial FP context area address */
    104   Stack_Control        Initial_stack;    /* stack information              */
     112  void                *stack;            /* initial FP context area address */
    105113}   Thread_Start_information;
    106114
     
    135143  Objects_Control          Object;
    136144  States_Control           current_state;
    137   rtems_task_priority      current_priority;
    138   rtems_task_priority      real_priority;
     145  Priority_Control         current_priority;
     146  Priority_Control         real_priority;
    139147  unsigned32               resource_count;
    140148  Thread_Wait_information  Wait;
     
    154162 */
    155163
     164/* XXX structure in wrong file .. API .. not core */
     165
     166typedef struct {
     167  boolean                   is_global;
     168  unsigned32                Notepads[ RTEMS_NUMBER_NOTEPADS ];
     169  rtems_event_set           pending_events;
     170  rtems_event_set           events_out;
     171  ASR_Information           Signal;
     172}  RTEMS_API_Control;
     173
    156174typedef struct {
    157175  Objects_Control           Object;
    158176  States_Control            current_state;
    159   rtems_task_priority       current_priority;
    160   rtems_task_priority       real_priority;
     177  Priority_Control          current_priority;
     178  Priority_Control          real_priority;
    161179  unsigned32                resource_count;
    162180  Thread_Wait_information   Wait;
     
    166184  Chain_Control            *ready;
    167185  Priority_Information      Priority_map;
    168   rtems_event_set           pending_events;
    169   rtems_event_set           events_out;
    170186  Thread_Start_information  Start;
    171   ASR_Information           Signal;
    172   rtems_mode                current_modes;
    173   rtems_attribute           attribute_set;
     187  Modes_Control             current_modes;
    174188  Context_Control           Registers;
    175189  void                     *fp_context;
    176   unsigned32                Notepads[ RTEMS_NUMBER_NOTEPADS ];
     190  RTEMS_API_Control        *RTEMS_API;
    177191  void                     *extension;
    178192}   Thread_Control;
     
    304318
    305319void _Thread_Dispatch( void );
     320
     321/*
     322 *  _Thread_Initialize
     323 *
     324 *  DESCRIPTION:
     325 *
     326 *  XXX
     327 */
     328
     329boolean _Thread_Initialize(
     330  Objects_Information *information,
     331  Thread_Control      *the_thread,
     332  void                *stack_area,    /* NULL if to be allocated */
     333  unsigned32           stack_size,    /* insure it is >= min */
     334  boolean              is_fp,         /* TRUE if thread uses FP */
     335  Priority_Control     priority,
     336  Modes_Control        mode,
     337  Objects_Name         name
     338 
     339);
     340
     341/*
     342 *  _Thread_Start
     343 *
     344 *  DESCRIPTION:
     345 *
     346 *  XXX
     347 */
     348 
     349boolean _Thread_Start(
     350  Thread_Control           *the_thread,
     351  Thread_Start_types        the_prototype,
     352  void                     *entry_point,
     353  void                     *pointer_argument,
     354  unsigned32                numeric_argument
     355);
     356
     357/*
     358 *  _Thread_Restart
     359 *
     360 *  DESCRIPTION:
     361 *
     362 *  XXX
     363 */
     364 
     365/* XXX multiple task arg profiles */
     366 
     367boolean _Thread_Restart(
     368  Thread_Control           *the_thread,
     369  void                     *pointer_argument,
     370  unsigned32                numeric_argument
     371);
     372
     373/*
     374 *  _Thread_Close
     375 *
     376 *  DESCRIPTION:
     377 *
     378 *  XXX
     379 */
     380 
     381void _Thread_Close(
     382  Objects_Information  *information,
     383  Thread_Control       *the_thread
     384);
    306385
    307386/*
     
    494573void _Thread_Change_priority (
    495574  Thread_Control   *the_thread,
    496   rtems_task_priority  new_priority
     575  Priority_Control  new_priority
    497576);
    498577
     
    508587void _Thread_Set_priority(
    509588  Thread_Control   *the_thread,
    510   rtems_task_priority  new_priority
     589  Priority_Control  new_priority
    511590);
    512591
     
    525604
    526605boolean _Thread_Change_mode(
    527   rtems_mode  new_mode_set,
    528   rtems_mode  mask,
    529   rtems_mode *old_mode_set
     606  Modes_Control  new_mode_set,
     607  Modes_Control  mask,
     608  Modes_Control *old_mode_set
    530609);
    531610
  • c/src/exec/score/headers/threadq.h

    r5250ff39 r7f6a24ab  
    3636                 Thread_Control *
    3737             );
     38
     39/*
     40 *  The following type defines the callout used when a local task
     41 *  is extracted from a remote thread queue (i.e. it's proxy must
     42 *  extracted from the remote queue).
     43 */
     44 
     45typedef void ( *Thread_queue_Extract_callout )(
     46                 Thread_Control *
     47             );
     48
     49EXTERN Thread_queue_Extract_callout 
     50  _Thread_queue_Extract_table[ OBJECTS_CLASSES_LAST + 1 ];
    3851
    3952/*
     
    6376void _Thread_queue_Enqueue(
    6477  Thread_queue_Control *the_thread_queue,
    65   rtems_interval     timeout
     78  rtems_interval        timeout
    6679);
    6780
     
    7790void _Thread_queue_Extract(
    7891  Thread_queue_Control *the_thread_queue,
     92  Thread_Control       *the_thread
     93);
     94
     95/*
     96 *  _Thread_queue_Extract_with_proxy
     97 *
     98 *  DESCRIPTION:
     99 *
     100 *  This routine extracts the_thread from the_thread_queue
     101 *  and insures that if there is a proxy for this task on
     102 *  another node, it is also dealt with.
     103 */
     104 
     105boolean _Thread_queue_Extract_with_proxy(
    79106  Thread_Control       *the_thread
    80107);
     
    119146
    120147void _Thread_queue_Initialize(
    121   Thread_queue_Control *the_thread_queue,
    122   rtems_attribute    attribute_set,
    123   States_Control        state
     148  Thread_queue_Control         *the_thread_queue,
     149  Objects_Classes               the_class,
     150  Thread_queue_Disciplines      the_discipline,
     151  States_Control                state,
     152  Thread_queue_Extract_callout  proxy_extract_callout
    124153);
    125154
  • c/src/exec/score/headers/tqdata.h

    r5250ff39 r7f6a24ab  
    3232
    3333typedef enum {
    34   THREAD_QUEUE_DATA_FIFO_DISCIPLINE,     /* RTEMS_FIFO queue discipline */
    35   THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE  /* RTEMS_PRIORITY queue discipline */
     34  THREAD_QUEUE_DISCIPLINE_FIFO,     /* RTEMS_FIFO queue discipline */
     35  THREAD_QUEUE_DISCIPLINE_PRIORITY  /* RTEMS_PRIORITY queue discipline */
    3636}   Thread_queue_Disciplines;
    3737
     
    6464
    6565STATIC INLINE unsigned32 _Thread_queue_Header_number (
    66   rtems_task_priority the_priority
     66  Priority_Control the_priority
    6767);
    6868
     
    7878
    7979STATIC INLINE boolean _Thread_queue_Is_reverse_search (
    80   rtems_task_priority the_priority
     80  Priority_Control the_priority
    8181);
    8282
  • c/src/exec/score/headers/userext.h

    r5250ff39 r7f6a24ab  
    7070
    7171STATIC INLINE void _User_extensions_Add_set (
    72   User_extensions_Control       *the_extension,
    73   rtems_extensions_table *extension_table
     72  User_extensions_Control  *the_extension,
     73  rtems_extensions_table   *extension_table
    7474);
    7575
  • c/src/exec/score/include/rtems/score/mppkt.h

    r5250ff39 r7f6a24ab  
    6565  Objects_Id              id;
    6666  Objects_Id              source_tid;
    67   rtems_task_priority     source_priority;
     67  Priority_Control        source_priority;
    6868  rtems_status_code       return_code;
    6969  unsigned32              length;
  • c/src/exec/score/include/rtems/score/object.h

    r5250ff39 r7f6a24ab  
    350350
    351351/*
     352 *  _Objects_Get_information
     353 *
     354 *  DESCRIPTION:
     355 *
     356 *  Returns the information control block for the class of objects
     357 *  corresponding to this id.
     358 */
     359
     360Objects_Information *_Objects_Get_information(
     361  Objects_Id  id
     362);
     363 
     364/*
    352365 *  _Objects_Build_id
    353366 *
     
    405418
    406419/*
     420 *  _Objects_Is_class_valid
     421 *
     422 *  DESCRIPTION:
     423 *
     424 *  This function returns TRUE if the class is valid.
     425 *
     426 */
     427 
     428STATIC INLINE boolean _Objects_Is_class_valid(
     429  Objects_Classes the_class
     430);
     431
     432/*
    407433 *  _Objects_Is_local_node
    408434 *
  • c/src/exec/score/include/rtems/score/objectmp.h

    r5250ff39 r7f6a24ab  
    8282);
    8383
     84/*PAGE
     85 *
     86 *  _Objects_MP_Open
     87 *
     88 *  DESCRIPTION:
     89 *
     90 *  This routine place the specified global object in the
     91 *  specified information table. 
     92 */
     93 
     94void _Objects_MP_Open (
     95  Objects_Information *information,
     96  Objects_MP_Control  *the_global_object,
     97  unsigned32           the_name,      /* XXX -- wrong for variable */
     98  Objects_Id           the_id
     99);
     100
    84101/*
    85  *  _Objects_MP_Open
     102 *  _Objects_MP_Allocate_and_open
    86103 *
    87104 *  DESCRIPTION:
     
    93110 */
    94111
    95 boolean _Objects_MP_Open (
     112boolean _Objects_MP_Allocate_and_open (
    96113  Objects_Information *information,
    97114  unsigned32           the_name,     /* XXX -- wrong for variable length */
  • c/src/exec/score/include/rtems/score/priority.h

    r5250ff39 r7f6a24ab  
    3030 */
    3131
    32 typedef unsigned32 rtems_task_priority;
     32typedef unsigned32 Priority_Control;
    3333
    3434#define RTEMS_MINIMUM_PRIORITY      1         /* highest thread priority */
     
    9393
    9494STATIC INLINE boolean _Priority_Is_valid (
    95   rtems_task_priority the_priority
     95  Priority_Control the_priority
    9696);
    9797
     
    105105
    106106STATIC INLINE unsigned32 _Priority_Major (
    107   rtems_task_priority the_priority
     107  Priority_Control the_priority
    108108);
    109109
     
    117117
    118118STATIC INLINE unsigned32 _Priority_Minor (
    119   rtems_task_priority the_priority
     119  Priority_Control the_priority
    120120);
    121121
     
    156156 */
    157157
    158 STATIC INLINE rtems_task_priority _Priority_Get_highest( void );
     158STATIC INLINE Priority_Control _Priority_Get_highest( void );
    159159
    160160/*
     
    170170STATIC INLINE void _Priority_Initialize_information(
    171171  Priority_Information *the_priority_map,
    172   rtems_task_priority      new_priority
     172  Priority_Control      new_priority
    173173);
    174174
     
    183183
    184184STATIC INLINE boolean _Priority_Is_group_empty (
    185   rtems_task_priority      the_priority
     185  Priority_Control      the_priority
    186186);
    187187
  • c/src/exec/score/include/rtems/score/thread.h

    r5250ff39 r7f6a24ab  
    8787                   );
    8888
    89 typedef Thread ( *Thread_Entry )(
    90                       Thread_Argument
    91                    );
     89typedef Thread ( *Thread_Entry )( );
    9290
    9391/*
     
    9694 */
    9795
     96typedef enum {
     97  THREAD_START_NUMERIC,
     98  THREAD_START_POINTER,
     99  THREAD_START_BOTH_POINTER_FIRST,
     100  THREAD_START_BOTH_NUMERIC_FIRST
     101} Thread_Start_types;
     102
    98103typedef struct {
    99104  Thread_Entry         entry_point;      /* starting thread address         */
    100   unsigned32           initial_argument; /* initial argument                */
    101   rtems_mode           initial_modes;    /* initial mode                    */
    102   rtems_task_priority  initial_priority; /* initial priority                */
     105  Thread_Start_types   prototype;        /* how task is invoked             */
     106  void                *pointer_argument; /* pointer argument                */
     107  unsigned32           numeric_argument; /* numeric argument                */
     108  Modes_Control        initial_modes;    /* initial mode                    */
     109  Priority_Control     initial_priority; /* initial priority                */
     110  Stack_Control        Initial_stack;    /* stack information               */
    103111  void                *fp_context;       /* initial FP context area address */
    104   Stack_Control        Initial_stack;    /* stack information              */
     112  void                *stack;            /* initial FP context area address */
    105113}   Thread_Start_information;
    106114
     
    135143  Objects_Control          Object;
    136144  States_Control           current_state;
    137   rtems_task_priority      current_priority;
    138   rtems_task_priority      real_priority;
     145  Priority_Control         current_priority;
     146  Priority_Control         real_priority;
    139147  unsigned32               resource_count;
    140148  Thread_Wait_information  Wait;
     
    154162 */
    155163
     164/* XXX structure in wrong file .. API .. not core */
     165
     166typedef struct {
     167  boolean                   is_global;
     168  unsigned32                Notepads[ RTEMS_NUMBER_NOTEPADS ];
     169  rtems_event_set           pending_events;
     170  rtems_event_set           events_out;
     171  ASR_Information           Signal;
     172}  RTEMS_API_Control;
     173
    156174typedef struct {
    157175  Objects_Control           Object;
    158176  States_Control            current_state;
    159   rtems_task_priority       current_priority;
    160   rtems_task_priority       real_priority;
     177  Priority_Control          current_priority;
     178  Priority_Control          real_priority;
    161179  unsigned32                resource_count;
    162180  Thread_Wait_information   Wait;
     
    166184  Chain_Control            *ready;
    167185  Priority_Information      Priority_map;
    168   rtems_event_set           pending_events;
    169   rtems_event_set           events_out;
    170186  Thread_Start_information  Start;
    171   ASR_Information           Signal;
    172   rtems_mode                current_modes;
    173   rtems_attribute           attribute_set;
     187  Modes_Control             current_modes;
    174188  Context_Control           Registers;
    175189  void                     *fp_context;
    176   unsigned32                Notepads[ RTEMS_NUMBER_NOTEPADS ];
     190  RTEMS_API_Control        *RTEMS_API;
    177191  void                     *extension;
    178192}   Thread_Control;
     
    304318
    305319void _Thread_Dispatch( void );
     320
     321/*
     322 *  _Thread_Initialize
     323 *
     324 *  DESCRIPTION:
     325 *
     326 *  XXX
     327 */
     328
     329boolean _Thread_Initialize(
     330  Objects_Information *information,
     331  Thread_Control      *the_thread,
     332  void                *stack_area,    /* NULL if to be allocated */
     333  unsigned32           stack_size,    /* insure it is >= min */
     334  boolean              is_fp,         /* TRUE if thread uses FP */
     335  Priority_Control     priority,
     336  Modes_Control        mode,
     337  Objects_Name         name
     338 
     339);
     340
     341/*
     342 *  _Thread_Start
     343 *
     344 *  DESCRIPTION:
     345 *
     346 *  XXX
     347 */
     348 
     349boolean _Thread_Start(
     350  Thread_Control           *the_thread,
     351  Thread_Start_types        the_prototype,
     352  void                     *entry_point,
     353  void                     *pointer_argument,
     354  unsigned32                numeric_argument
     355);
     356
     357/*
     358 *  _Thread_Restart
     359 *
     360 *  DESCRIPTION:
     361 *
     362 *  XXX
     363 */
     364 
     365/* XXX multiple task arg profiles */
     366 
     367boolean _Thread_Restart(
     368  Thread_Control           *the_thread,
     369  void                     *pointer_argument,
     370  unsigned32                numeric_argument
     371);
     372
     373/*
     374 *  _Thread_Close
     375 *
     376 *  DESCRIPTION:
     377 *
     378 *  XXX
     379 */
     380 
     381void _Thread_Close(
     382  Objects_Information  *information,
     383  Thread_Control       *the_thread
     384);
    306385
    307386/*
     
    494573void _Thread_Change_priority (
    495574  Thread_Control   *the_thread,
    496   rtems_task_priority  new_priority
     575  Priority_Control  new_priority
    497576);
    498577
     
    508587void _Thread_Set_priority(
    509588  Thread_Control   *the_thread,
    510   rtems_task_priority  new_priority
     589  Priority_Control  new_priority
    511590);
    512591
     
    525604
    526605boolean _Thread_Change_mode(
    527   rtems_mode  new_mode_set,
    528   rtems_mode  mask,
    529   rtems_mode *old_mode_set
     606  Modes_Control  new_mode_set,
     607  Modes_Control  mask,
     608  Modes_Control *old_mode_set
    530609);
    531610
  • c/src/exec/score/include/rtems/score/threadq.h

    r5250ff39 r7f6a24ab  
    3636                 Thread_Control *
    3737             );
     38
     39/*
     40 *  The following type defines the callout used when a local task
     41 *  is extracted from a remote thread queue (i.e. it's proxy must
     42 *  extracted from the remote queue).
     43 */
     44 
     45typedef void ( *Thread_queue_Extract_callout )(
     46                 Thread_Control *
     47             );
     48
     49EXTERN Thread_queue_Extract_callout 
     50  _Thread_queue_Extract_table[ OBJECTS_CLASSES_LAST + 1 ];
    3851
    3952/*
     
    6376void _Thread_queue_Enqueue(
    6477  Thread_queue_Control *the_thread_queue,
    65   rtems_interval     timeout
     78  rtems_interval        timeout
    6679);
    6780
     
    7790void _Thread_queue_Extract(
    7891  Thread_queue_Control *the_thread_queue,
     92  Thread_Control       *the_thread
     93);
     94
     95/*
     96 *  _Thread_queue_Extract_with_proxy
     97 *
     98 *  DESCRIPTION:
     99 *
     100 *  This routine extracts the_thread from the_thread_queue
     101 *  and insures that if there is a proxy for this task on
     102 *  another node, it is also dealt with.
     103 */
     104 
     105boolean _Thread_queue_Extract_with_proxy(
    79106  Thread_Control       *the_thread
    80107);
     
    119146
    120147void _Thread_queue_Initialize(
    121   Thread_queue_Control *the_thread_queue,
    122   rtems_attribute    attribute_set,
    123   States_Control        state
     148  Thread_queue_Control         *the_thread_queue,
     149  Objects_Classes               the_class,
     150  Thread_queue_Disciplines      the_discipline,
     151  States_Control                state,
     152  Thread_queue_Extract_callout  proxy_extract_callout
    124153);
    125154
  • c/src/exec/score/include/rtems/score/tqdata.h

    r5250ff39 r7f6a24ab  
    3232
    3333typedef enum {
    34   THREAD_QUEUE_DATA_FIFO_DISCIPLINE,     /* RTEMS_FIFO queue discipline */
    35   THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE  /* RTEMS_PRIORITY queue discipline */
     34  THREAD_QUEUE_DISCIPLINE_FIFO,     /* RTEMS_FIFO queue discipline */
     35  THREAD_QUEUE_DISCIPLINE_PRIORITY  /* RTEMS_PRIORITY queue discipline */
    3636}   Thread_queue_Disciplines;
    3737
     
    6464
    6565STATIC INLINE unsigned32 _Thread_queue_Header_number (
    66   rtems_task_priority the_priority
     66  Priority_Control the_priority
    6767);
    6868
     
    7878
    7979STATIC INLINE boolean _Thread_queue_Is_reverse_search (
    80   rtems_task_priority the_priority
     80  Priority_Control the_priority
    8181);
    8282
  • c/src/exec/score/include/rtems/score/userext.h

    r5250ff39 r7f6a24ab  
    7070
    7171STATIC INLINE void _User_extensions_Add_set (
    72   User_extensions_Control       *the_extension,
    73   rtems_extensions_table *extension_table
     72  User_extensions_Control  *the_extension,
     73  rtems_extensions_table   *extension_table
    7474);
    7575
  • c/src/exec/score/inline/object.inl

    r5250ff39 r7f6a24ab  
    7373{
    7474  return (id >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS;
     75}
     76
     77/*PAGE
     78 *
     79 *  _Objects_Is_class_valid
     80 *
     81 */
     82 
     83STATIC INLINE boolean _Objects_Is_class_valid(
     84  Objects_Classes the_class
     85)
     86{
     87  return the_class <= OBJECTS_CLASSES_LAST;
    7588}
    7689
  • c/src/exec/score/inline/priority.inl

    r5250ff39 r7f6a24ab  
    4242
    4343STATIC INLINE boolean _Priority_Is_valid (
    44   rtems_task_priority the_priority
     44  Priority_Control the_priority
    4545)
    4646{
     
    5656
    5757STATIC INLINE unsigned32 _Priority_Major (
    58   rtems_task_priority the_priority
     58  Priority_Control the_priority
    5959)
    6060{
     
    6969
    7070STATIC INLINE unsigned32 _Priority_Minor (
    71   rtems_task_priority the_priority
     71  Priority_Control the_priority
    7272)
    7373{
     
    110110 */
    111111
    112 STATIC INLINE rtems_task_priority _Priority_Get_highest( void )
     112STATIC INLINE Priority_Control _Priority_Get_highest( void )
    113113{
    114114  Priority_Bit_map_control minor;
     
    130130STATIC INLINE void _Priority_Initialize_information(
    131131  Priority_Information *the_priority_map,
    132   rtems_task_priority      new_priority
     132  Priority_Control      new_priority
    133133)
    134134{
     
    159159
    160160STATIC INLINE boolean _Priority_Is_group_empty (
    161   rtems_task_priority      the_priority
     161  Priority_Control      the_priority
    162162)
    163163{
  • c/src/exec/score/inline/rtems/score/object.inl

    r5250ff39 r7f6a24ab  
    7373{
    7474  return (id >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS;
     75}
     76
     77/*PAGE
     78 *
     79 *  _Objects_Is_class_valid
     80 *
     81 */
     82 
     83STATIC INLINE boolean _Objects_Is_class_valid(
     84  Objects_Classes the_class
     85)
     86{
     87  return the_class <= OBJECTS_CLASSES_LAST;
    7588}
    7689
  • c/src/exec/score/inline/rtems/score/priority.inl

    r5250ff39 r7f6a24ab  
    4242
    4343STATIC INLINE boolean _Priority_Is_valid (
    44   rtems_task_priority the_priority
     44  Priority_Control the_priority
    4545)
    4646{
     
    5656
    5757STATIC INLINE unsigned32 _Priority_Major (
    58   rtems_task_priority the_priority
     58  Priority_Control the_priority
    5959)
    6060{
     
    6969
    7070STATIC INLINE unsigned32 _Priority_Minor (
    71   rtems_task_priority the_priority
     71  Priority_Control the_priority
    7272)
    7373{
     
    110110 */
    111111
    112 STATIC INLINE rtems_task_priority _Priority_Get_highest( void )
     112STATIC INLINE Priority_Control _Priority_Get_highest( void )
    113113{
    114114  Priority_Bit_map_control minor;
     
    130130STATIC INLINE void _Priority_Initialize_information(
    131131  Priority_Information *the_priority_map,
    132   rtems_task_priority      new_priority
     132  Priority_Control      new_priority
    133133)
    134134{
     
    159159
    160160STATIC INLINE boolean _Priority_Is_group_empty (
    161   rtems_task_priority      the_priority
     161  Priority_Control      the_priority
    162162)
    163163{
  • c/src/exec/score/inline/rtems/score/tqdata.inl

    r5250ff39 r7f6a24ab  
    2525
    2626STATIC INLINE unsigned32 _Thread_queue_Header_number (
    27   rtems_task_priority the_priority
     27  Priority_Control the_priority
    2828)
    2929{
     
    3838
    3939STATIC INLINE boolean _Thread_queue_Is_reverse_search (
    40   rtems_task_priority the_priority
     40  Priority_Control the_priority
    4141)
    4242{
  • c/src/exec/score/inline/rtems/score/userext.inl

    r5250ff39 r7f6a24ab  
    4242
    4343STATIC INLINE void _User_extensions_Add_set (
    44   User_extensions_Control       *the_extension,
    45   rtems_extensions_table *extension_table
     44  User_extensions_Control *the_extension,
     45  rtems_extensions_table  *extension_table
    4646)
    4747{
  • c/src/exec/score/inline/tqdata.inl

    r5250ff39 r7f6a24ab  
    2525
    2626STATIC INLINE unsigned32 _Thread_queue_Header_number (
    27   rtems_task_priority the_priority
     27  Priority_Control the_priority
    2828)
    2929{
     
    3838
    3939STATIC INLINE boolean _Thread_queue_Is_reverse_search (
    40   rtems_task_priority the_priority
     40  Priority_Control the_priority
    4141)
    4242{
  • c/src/exec/score/inline/userext.inl

    r5250ff39 r7f6a24ab  
    4242
    4343STATIC INLINE void _User_extensions_Add_set (
    44   User_extensions_Control       *the_extension,
    45   rtems_extensions_table *extension_table
     44  User_extensions_Control *the_extension,
     45  rtems_extensions_table  *extension_table
    4646)
    4747{
  • c/src/exec/score/macros/object.inl

    r5250ff39 r7f6a24ab  
    5555#define rtems_get_index( _id ) \
    5656  (((_id) >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS)
     57
     58/*PAGE
     59 *
     60 *  _Objects_Is_class_valid
     61 *
     62 */
     63 
     64#define _Objects_Is_class_valid( _the_class ) \
     65  ( (_the_class) <= OBJECTS_CLASSES_LAST )
    5766
    5867/*PAGE
  • c/src/exec/score/macros/rtems/score/object.inl

    r5250ff39 r7f6a24ab  
    5555#define rtems_get_index( _id ) \
    5656  (((_id) >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS)
     57
     58/*PAGE
     59 *
     60 *  _Objects_Is_class_valid
     61 *
     62 */
     63 
     64#define _Objects_Is_class_valid( _the_class ) \
     65  ( (_the_class) <= OBJECTS_CLASSES_LAST )
    5766
    5867/*PAGE
  • c/src/exec/score/macros/rtems/score/thread.inl

    r5250ff39 r7f6a24ab  
    9494#define _Thread_Calculate_heir() \
    9595 { \
    96    rtems_task_priority  highest; \
     96   Priority_Control  highest; \
    9797   \
    9898   _Priority_Get_highest( highest ); \
  • c/src/exec/score/macros/thread.inl

    r5250ff39 r7f6a24ab  
    9494#define _Thread_Calculate_heir() \
    9595 { \
    96    rtems_task_priority  highest; \
     96   Priority_Control  highest; \
    9797   \
    9898   _Priority_Get_highest( highest ); \
  • c/src/exec/score/src/mpci.c

    r5250ff39 r7f6a24ab  
    3737  _Thread_queue_Initialize(
    3838    &_MPCI_Remote_blocked_threads,
    39     RTEMS_FIFO,
    40     STATES_WAITING_FOR_RPC_REPLY
     39    OBJECTS_NO_CLASS,
     40    THREAD_QUEUE_DISCIPLINE_FIFO,
     41    STATES_WAITING_FOR_RPC_REPLY,
     42    NULL
    4143  );
    4244}
  • c/src/exec/score/src/object.c

    r5250ff39 r7f6a24ab  
    477477    return 0;
    478478}
     479
     480/*PAGE
     481 *
     482 *  _Objects_Get_information
     483 *
     484 *  XXX
     485 */
     486 
     487Objects_Information *_Objects_Get_information(
     488  Objects_Id  id
     489)
     490{
     491  Objects_Classes  the_class;
     492
     493  the_class = rtems_get_class( id );
     494
     495  if ( !_Objects_Is_class_valid( the_class ) )
     496    return NULL;
     497
     498  return _Objects_Information_table[ the_class ];
     499}
     500
  • c/src/exec/score/src/objectmp.c

    r5250ff39 r7f6a24ab  
    5151 *
    5252 */
    53 
    54 boolean _Objects_MP_Open (
    55   Objects_Information *information,
     53 
     54void _Objects_MP_Open (
     55  Objects_Information *information,
     56  Objects_MP_Control  *the_global_object,
    5657  unsigned32           the_name,      /* XXX -- wrong for variable */
    57   Objects_Id           the_id,
    58   boolean              is_fatal_error
    59 )
    60 {
    61   Objects_MP_Control  *the_global_object;
    62 
    63   the_global_object = _Objects_MP_Allocate_global_object();
    64   if ( _Objects_MP_Is_null_global_object( the_global_object ) ) {
    65 
    66     if ( is_fatal_error == FALSE )
    67       return FALSE;
    68 
    69     rtems_fatal_error_occurred( RTEMS_TOO_MANY );
    70 
    71   }
    72 
     58  Objects_Id           the_id
     59)
     60{
    7361  the_global_object->Object.id = the_id;
    7462  the_global_object->name      = the_name;
    75 
     63 
    7664  _Chain_Prepend(
    7765    &information->global_table[ rtems_get_node( the_id ) ],
    7866    &the_global_object->Object.Node
    7967  );
     68
     69}
     70
     71/*PAGE
     72 *
     73 *  _Objects_MP_Allocate_and_open
     74 *
     75 */
     76
     77boolean _Objects_MP_Allocate_and_open (
     78  Objects_Information *information,
     79  unsigned32           the_name,      /* XXX -- wrong for variable */
     80  Objects_Id           the_id,
     81  boolean              is_fatal_error
     82)
     83{
     84  Objects_MP_Control  *the_global_object;
     85
     86  the_global_object = _Objects_MP_Allocate_global_object();
     87  if ( _Objects_MP_Is_null_global_object( the_global_object ) ) {
     88
     89    if ( is_fatal_error == FALSE )
     90      return FALSE;
     91
     92    rtems_fatal_error_occurred( RTEMS_TOO_MANY );
     93
     94  }
     95
     96  _Objects_MP_Open( information, the_global_object, the_name, the_id );
    8097
    8198  return TRUE;
  • c/src/exec/score/src/thread.c

    r5250ff39 r7f6a24ab  
    143143void _Thread_Dispatch( void )
    144144{
    145   Thread_Control  *executing;
    146   Thread_Control  *heir;
    147   ISR_Level               level;
     145  Thread_Control   *executing;
     146  Thread_Control   *heir;
     147  ISR_Level         level;
    148148  rtems_signal_set  signal_set;
    149   rtems_mode           previous_mode;
     149  Modes_Control     previous_mode;
    150150
    151151  executing   = _Thread_Executing;
     
    200200  _Thread_Dispatch_disable_level = 0;
    201201
    202   if ( _ASR_Are_signals_pending( &executing->Signal ) ) {
    203     signal_set                       = executing->Signal.signals_posted;
    204     executing->Signal.signals_posted = 0;
     202  if ( _ASR_Are_signals_pending( &executing->RTEMS_API->Signal ) ) {
     203    signal_set = executing->RTEMS_API->Signal.signals_posted;
     204    executing->RTEMS_API->Signal.signals_posted = 0;
    205205    _ISR_Enable( level );
    206206
    207     executing->Signal.nest_level += 1;
    208     if (_Thread_Change_mode( executing->Signal.mode_set,
     207    executing->RTEMS_API->Signal.nest_level += 1;
     208    if (_Thread_Change_mode( executing->RTEMS_API->Signal.mode_set,
    209209                                RTEMS_ALL_MODE_MASKS, &previous_mode ))
    210210        _Thread_Dispatch();
    211211
    212     (*executing->Signal.handler)( signal_set );
    213 
    214     executing->Signal.nest_level -= 1;
     212    (*executing->RTEMS_API->Signal.handler)( signal_set );
     213
     214    executing->RTEMS_API->Signal.nest_level -= 1;
    215215    if (_Thread_Change_mode( previous_mode,
    216216                                RTEMS_ALL_MODE_MASKS, &previous_mode ))
     
    219219  else
    220220    _ISR_Enable( level );
     221}
     222
     223/*PAGE
     224 *
     225 *  _Thread_Initialize
     226 *
     227 *  XXX
     228 */
     229
     230boolean _Thread_Initialize(
     231  Objects_Information *information,
     232  Thread_Control      *the_thread,
     233  void                *stack_area,    /* NULL if to be allocated */
     234  unsigned32           stack_size,    /* insure it is >= min */
     235  boolean              is_fp,         /* TRUE if thread uses FP */
     236  Priority_Control     priority,
     237  Modes_Control        mode,
     238  Objects_Name         name
     239 
     240)
     241{
     242  unsigned32           actual_stack_size;
     243  void                *stack;
     244  void                *fp_area;
     245
     246  /*
     247   *  Allocate and Initialize the stack for this thread.
     248   */
     249
     250  if ( !_Stack_Is_enough( stack_size ) )
     251    actual_stack_size = RTEMS_MINIMUM_STACK_SIZE;
     252  else
     253    actual_stack_size = stack_size;
     254
     255  actual_stack_size = _Stack_Adjust_size( actual_stack_size );
     256  stack             = stack_area;
     257
     258  if ( !stack ) {
     259    stack = _Workspace_Allocate( actual_stack_size );
     260 
     261    if ( !stack )
     262      return FALSE;
     263
     264    the_thread->Start.stack = stack;
     265  } else
     266    the_thread->Start.stack = NULL;
     267
     268  _Stack_Initialize(
     269     &the_thread->Start.Initial_stack,
     270     stack,
     271     actual_stack_size
     272  );
     273
     274  /*
     275   *  Allocate the floating point area for this thread
     276   */
     277 
     278  if ( is_fp ) {
     279
     280    fp_area = _Workspace_Allocate( CONTEXT_FP_SIZE );
     281    if ( !fp_area ) {
     282      (void) _Workspace_Free( stack );
     283      return FALSE;
     284    }
     285    fp_area = _Context_Fp_start( fp_area, 0 );
     286
     287  } else
     288    fp_area = NULL;
     289
     290  the_thread->fp_context       = fp_area;
     291  the_thread->Start.fp_context = fp_area;
     292 
     293/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
     294  /*
     295   *  Allocate and initialize the RTEMS API specific information
     296   */
     297 
     298  the_thread->RTEMS_API = _Workspace_Allocate( sizeof( RTEMS_API_Control ) );
     299 
     300  if ( !the_thread->RTEMS_API ) {
     301/* XXX when in task_create
     302    _RTEMS_tasks_Free( the_thread );
     303    _Objects_MP_Free_global_object( the_global_object );
     304
     305    _Thread_Enable_dispatch();
     306    return( RTEMS_UNSATISFIED );
     307*/
     308      (void) _Workspace_Free( stack );
     309      (void) _Workspace_Free( fp_area );
     310      return FALSE;
     311 
     312  }
     313 
     314  the_thread->RTEMS_API->is_global              = FALSE;
     315  the_thread->RTEMS_API->pending_events         = EVENT_SETS_NONE_PENDING;
     316  _ASR_Initialize( &the_thread->RTEMS_API->Signal );
     317
     318  /* XXX should not be here .... */
     319 
     320/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
     321
     322  /*
     323   *  General initialization
     324   */
     325
     326  the_thread->current_state          = STATES_DORMANT;
     327  the_thread->current_modes          = mode;
     328  the_thread->resource_count         = 0;
     329  the_thread->real_priority          = priority;
     330  the_thread->Start.initial_priority = priority;
     331  the_thread->Start.initial_modes    = mode;
     332 
     333  _Thread_Set_priority( the_thread, priority );
     334
     335  /*
     336   *  Open the object
     337   */
     338
     339  _Objects_Open( information, &the_thread->Object, name );
     340
     341  /*
     342   *  Invoke create extensions
     343   */
     344
     345  _User_extensions_Task_create( the_thread );
     346  /* XXX if this fails ... */
     347
     348  return TRUE;
     349}
     350
     351/*
     352 *  _Thread_Start
     353 *
     354 *  DESCRIPTION:
     355 *
     356 *  XXX
     357 */
     358 
     359boolean _Thread_Start(
     360  Thread_Control       *the_thread,
     361  Thread_Start_types    the_prototype,
     362  void                 *entry_point,
     363  void                 *pointer_argument,
     364  unsigned32            numeric_argument
     365)
     366{
     367  if ( _States_Is_dormant( the_thread->current_state ) ) {
     368 
     369    the_thread->Start.entry_point      = entry_point;
     370   
     371    the_thread->Start.prototype        = the_prototype;
     372    the_thread->Start.pointer_argument = pointer_argument;
     373    the_thread->Start.numeric_argument = numeric_argument;
     374 
     375    _Thread_Load_environment( the_thread );
     376 
     377    _Thread_Ready( the_thread );
     378 
     379    _User_extensions_Task_start( the_thread );
     380 
     381    return TRUE;
     382  }
     383 
     384  return FALSE;
     385 
     386}
     387
     388/*
     389 *  _Thread_Restart
     390 *
     391 *  DESCRIPTION:
     392 *
     393 *  XXX
     394 */
     395 
     396boolean _Thread_Restart(
     397  Thread_Control      *the_thread,
     398  void                *pointer_argument,
     399  unsigned32           numeric_argument
     400)
     401{
     402  if ( !_States_Is_dormant( the_thread->current_state ) ) {
     403 
     404    _Thread_Set_transient( the_thread );
     405    the_thread->resource_count = 0;
     406    the_thread->current_modes  = the_thread->Start.initial_modes;
     407
     408    the_thread->Start.pointer_argument = pointer_argument;
     409    the_thread->Start.numeric_argument = numeric_argument;
     410 
     411    if ( !_Thread_queue_Extract_with_proxy( the_thread ) ) {
     412 
     413      if ( _Watchdog_Is_active( &the_thread->Timer ) )
     414        (void) _Watchdog_Remove( &the_thread->Timer );
     415    }
     416
     417    if ( the_thread->current_priority != the_thread->Start.initial_priority ) {
     418      the_thread->real_priority = the_thread->Start.initial_priority;
     419      _Thread_Set_priority( the_thread, the_thread->Start.initial_priority );
     420    }
     421 
     422    _Thread_Load_environment( the_thread );
     423 
     424    _Thread_Ready( the_thread );
     425 
     426    _User_extensions_Task_restart( the_thread );
     427 
     428    if ( _Thread_Is_executing ( the_thread ) )
     429      _Thread_Restart_self();
     430 
     431    return TRUE;
     432  }
     433 
     434  return FALSE;
     435}
     436
     437/*
     438 *  _Thread_Close
     439 *
     440 *  DESCRIPTION:
     441 *
     442 *  XXX
     443 */
     444 
     445void _Thread_Close(
     446  Objects_Information  *information,
     447  Thread_Control       *the_thread
     448)
     449{
     450  _Objects_Close( information, &the_thread->Object );
     451 
     452  _Thread_Set_state( the_thread, STATES_TRANSIENT );
     453 
     454  if ( !_Thread_queue_Extract_with_proxy( the_thread ) ) {
     455 
     456    if ( _Watchdog_Is_active( &the_thread->Timer ) )
     457      (void) _Watchdog_Remove( &the_thread->Timer );
     458  }
     459
     460  _User_extensions_Task_delete( the_thread );
     461 
     462#if ( CPU_USE_DEFERRED_FP_SWITCH == TRUE )
     463  if ( _Thread_Is_allocated_fp( the_thread ) )
     464    _Thread_Deallocate_fp();
     465#endif
     466  the_thread->fp_context = NULL;
     467
     468  (void) _Workspace_Free( the_thread->Start.fp_context );
     469
     470  if ( the_thread->Start.stack )
     471    (void) _Workspace_Free( the_thread->Start.stack );
    221472}
    222473
     
    596847  _Thread_Enable_dispatch();
    597848 
    598   (*executing->Start.entry_point)( executing->Start.initial_argument );
     849  switch (  executing->Start.prototype ) {
     850    case THREAD_START_NUMERIC:
     851      (*executing->Start.entry_point)( executing->Start.numeric_argument );
     852      break;
     853    case THREAD_START_POINTER:
     854      (*executing->Start.entry_point)( executing->Start.pointer_argument );
     855      break;
     856    case THREAD_START_BOTH_POINTER_FIRST:
     857      (*executing->Start.entry_point)(
     858        executing->Start.pointer_argument,
     859        executing->Start.numeric_argument
     860      );
     861      break;
     862    case THREAD_START_BOTH_NUMERIC_FIRST:
     863      (*executing->Start.entry_point)(
     864        executing->Start.numeric_argument,
     865        executing->Start.pointer_argument
     866      );
     867      break;
     868  }
    599869
    600870  _User_extensions_Task_exitted( executing );
     
    655925
    656926void _Thread_Change_priority(
    657   Thread_Control *the_thread,
    658   rtems_task_priority       new_priority
     927  Thread_Control   *the_thread,
     928  Priority_Control  new_priority
    659929)
    660930{
     
    705975
    706976void _Thread_Set_priority(
    707   Thread_Control *the_thread,
    708   rtems_task_priority       new_priority
     977  Thread_Control   *the_thread,
     978  Priority_Control  new_priority
    709979)
    710980{
     
    7361006
    7371007boolean _Thread_Change_mode(
    738   unsigned32  new_mode_set,
    739   unsigned32  mask,
    740   unsigned32 *old_mode_set
    741 )
    742 {
    743   rtems_mode   changed;
    744   rtems_mode   threads_new_mode_set;
     1008  Modes_Control  new_mode_set,
     1009  Modes_Control  mask,
     1010  Modes_Control *old_mode_set
     1011)
     1012{
     1013  Modes_Control   changed;
     1014  Modes_Control   threads_new_mode_set;
    7451015  Thread_Control *executing;
    7461016  boolean         need_dispatch;
     
    7551025
    7561026  if ( _Modes_Mask_changed( changed, RTEMS_ASR_MASK ) )
    757     _ASR_Swap_signals( &executing->Signal );
     1027    _ASR_Swap_signals( &executing->RTEMS_API->Signal );
    7581028
    7591029  executing->current_modes = threads_new_mode_set;
     
    7661036     _Context_Switch_necessary = TRUE;
    7671037
    768   else if ( !_ASR_Are_signals_pending( &executing->Signal ) )
     1038  else if ( !_ASR_Are_signals_pending( &executing->RTEMS_API->Signal ) )
    7691039
    7701040    need_dispatch = FALSE;
  • c/src/exec/score/src/threadq.c

    r5250ff39 r7f6a24ab  
    3131 *  Input parameters:
    3232 *    the_thread_queue - pointer to a threadq header
    33  *    attribute_set    - used to determine queueing discipline
     33 *    the_class        - class of the object to which this belongs
     34 *    discipline       - queueing discipline
    3435 *    state            - state of waiting threads
    3536 *
     
    3839
    3940void _Thread_queue_Initialize(
    40   Thread_queue_Control *the_thread_queue,
    41   rtems_attribute           attribute_set,
    42   States_Control               state
     41  Thread_queue_Control         *the_thread_queue,
     42  Objects_Classes               the_class,
     43  Thread_queue_Disciplines      the_discipline,
     44  States_Control                state,
     45  Thread_queue_Extract_callout  proxy_extract_callout
    4346)
    4447{
    4548  unsigned32 index;
    4649
    47   if ( _Attributes_Is_priority( attribute_set ) ) {
    48     the_thread_queue->discipline = THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE;
    49     for( index=0 ;
    50          index < TASK_QUEUE_DATA_NUMBER_OF_PRIORITY_HEADERS ;
    51          index++)
    52       _Chain_Initialize_empty( &the_thread_queue->Queues.Priority[index] );
    53   }
    54   else {
    55     the_thread_queue->discipline = THREAD_QUEUE_DATA_FIFO_DISCIPLINE;
    56     _Chain_Initialize_empty( &the_thread_queue->Queues.Fifo );
    57   }
    58 
    59   the_thread_queue->state = state;
     50  _Thread_queue_Extract_table[ the_class ] = proxy_extract_callout;
     51
     52  the_thread_queue->state      = state;
     53  the_thread_queue->discipline = the_discipline;
     54
     55  switch ( the_discipline ) {
     56    case THREAD_QUEUE_DISCIPLINE_FIFO:
     57      _Chain_Initialize_empty( &the_thread_queue->Queues.Fifo );
     58      break;
     59    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
     60      for( index=0 ;
     61           index < TASK_QUEUE_DATA_NUMBER_OF_PRIORITY_HEADERS ;
     62           index++)
     63        _Chain_Initialize_empty( &the_thread_queue->Queues.Priority[index] );
     64      break;
     65  }
    6066
    6167}
     
    108114
    109115  switch( the_thread_queue->discipline ) {
    110     case THREAD_QUEUE_DATA_FIFO_DISCIPLINE:
     116    case THREAD_QUEUE_DISCIPLINE_FIFO:
    111117      _Thread_queue_Enqueue_fifo( the_thread_queue, the_thread, timeout );
    112118      break;
    113     case THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE:
     119    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
    114120      _Thread_queue_Enqueue_priority(
    115121         the_thread_queue, the_thread, timeout );
     
    145151
    146152  switch ( the_thread_queue->discipline ) {
    147     case THREAD_QUEUE_DATA_FIFO_DISCIPLINE:
     153    case THREAD_QUEUE_DISCIPLINE_FIFO:
    148154      the_thread = _Thread_queue_Dequeue_fifo( the_thread_queue );
    149155      break;
    150     case THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE:
     156    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
    151157      the_thread = _Thread_queue_Dequeue_priority( the_thread_queue );
    152158      break;
     
    172178/*PAGE
    173179 *
     180 *  _Thread_queue_Extract_with_proxy
     181 *
     182 *  This routine extracts the_thread from the_thread_queue
     183 *  and insures that if there is a proxy for this task on
     184 *  another node, it is also dealt with.
     185 *
     186 *  XXX
     187 */
     188 
     189boolean _Thread_queue_Extract_with_proxy(
     190  Thread_Control       *the_thread
     191)
     192{
     193  States_Control                state;
     194  Objects_Classes               the_class;
     195  Thread_queue_Extract_callout  proxy_extract_callout;
     196
     197  state = the_thread->current_state;
     198
     199  if ( _States_Is_waiting_on_thread_queue( state ) ) {
     200    if ( _States_Is_waiting_for_rpc_reply( state ) &&
     201         _States_Is_locally_blocked( state ) ) {
     202
     203      the_class = rtems_get_class( the_thread->Wait.id );
     204
     205      proxy_extract_callout = _Thread_queue_Extract_table[ the_class ];
     206
     207      if ( proxy_extract_callout )
     208        (*proxy_extract_callout)( the_thread );
     209    }
     210    _Thread_queue_Extract( the_thread->Wait.queue, the_thread );
     211
     212    return TRUE;
     213  }
     214  return FALSE;
     215}
     216
     217/*PAGE
     218 *
    174219 *  _Thread_queue_Extract
    175220 *
     
    192237{
    193238  switch ( the_thread_queue->discipline ) {
    194     case THREAD_QUEUE_DATA_FIFO_DISCIPLINE:
     239    case THREAD_QUEUE_DISCIPLINE_FIFO:
    195240      _Thread_queue_Extract_fifo( the_thread_queue, the_thread );
    196241      break;
    197     case THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE:
     242    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
    198243      _Thread_queue_Extract_priority( the_thread_queue, the_thread );
    199244      break;
     
    249294
    250295  switch ( the_thread_queue->discipline ) {
    251     case THREAD_QUEUE_DATA_FIFO_DISCIPLINE:
     296    case THREAD_QUEUE_DISCIPLINE_FIFO:
    252297      the_thread = _Thread_queue_First_fifo( the_thread_queue );
    253298      break;
    254     case THREAD_QUEUE_DATA_PRIORITY_DISCIPLINE:
     299    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
    255300      the_thread = _Thread_queue_First_priority( the_thread_queue );
    256301      break;
     
    438483  if ( !_Watchdog_Is_active( &the_thread->Timer ) ) {
    439484    _ISR_Enable( level );
    440     _Thread_Unblock( the_thread );
    441485  } else {
    442486    _Watchdog_Deactivate( &the_thread->Timer );
    443487    _ISR_Enable( level );
    444488    (void) _Watchdog_Remove( &the_thread->Timer );
    445     _Thread_Unblock( the_thread );
    446   }
     489  }
     490
     491  _Thread_Unblock( the_thread );
    447492
    448493  if ( !_Objects_Is_local_id( the_thread->Object.id ) )
    449494    _Thread_MP_Free_proxy( the_thread );
     495 
    450496}
    451497
     
    499545)
    500546{
    501   rtems_task_priority       search_priority;
    502   Thread_Control *search_thread;
    503   ISR_Level              level;
    504   Chain_Control  *header;
    505   unsigned32             header_index;
    506   Chain_Node     *the_node;
    507   Chain_Node     *next_node;
    508   Chain_Node     *previous_node;
    509   Chain_Node     *search_node;
    510   rtems_task_priority       priority;
    511   States_Control         block_state;
     547  Priority_Control  search_priority;
     548  Thread_Control   *search_thread;
     549  ISR_Level         level;
     550  Chain_Control    *header;
     551  unsigned32        header_index;
     552  Chain_Node       *the_node;
     553  Chain_Node       *next_node;
     554  Chain_Node       *previous_node;
     555  Chain_Node       *search_node;
     556  Priority_Control  priority;
     557  States_Control    block_state;
    512558
    513559  _Chain_Initialize_empty( &the_thread->Wait.Block2n );
  • c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c

    r5250ff39 r7f6a24ab  
    1717
    1818#include <rtems.h>
     19#include <rtems/libio.h>
    1920#include <bsp.h>
    20 #include <clockdrv.h>
     21
     22void Clock_exit( void );
     23rtems_isr Clock_isr( rtems_vector_number vector );
     24
    2125
    2226/*
     
    3135 *  number of clock ticks since the driver was initialized.
    3236 */
     37
    3338volatile rtems_unsigned32 Clock_driver_ticks;
    3439
     
    4449
    4550/*
     51 * These are set by clock driver during its init
     52 */
     53 
     54rtems_device_major_number rtems_clock_major = ~0;
     55rtems_device_minor_number rtems_clock_minor;
     56
     57/*
    4658 *  The previous ISR on this clock tick interrupt vector.
    4759 */
    4860
    4961rtems_isr_entry  Old_ticker;
    50 
    51 /*
    52  *  Clock_initialize
    53  *
    54  *  Device driver entry point for clock tick driver initialization.
    55  */
    56 
    57 rtems_device_driver Clock_initialize(
    58   rtems_device_major_number major,
    59   rtems_device_minor_number minor,
    60   void *pargp,
    61   rtems_id tid,
    62   rtems_unsigned32 *rval
    63 )
    64 {
    65   Install_clock( Clock_isr );
    66 }
    6762
    6863/*
     
    142137  }
    143138}
     139
     140/*
     141 *  Clock_initialize
     142 *
     143 *  Device driver entry point for clock tick driver initialization.
     144 */
     145
     146rtems_device_driver Clock_initialize(
     147  rtems_device_major_number major,
     148  rtems_device_minor_number minor,
     149  void *pargp
     150)
     151{
     152  Install_clock((rtems_isr_entry) Clock_isr);
     153
     154  /*
     155   * make major/minor avail to others such as shared memory driver
     156   */
     157  rtems_clock_major = major;
     158    rtems_clock_minor = minor;
     159
     160  return RTEMS_SUCCESSFUL;
     161}
     162
     163rtems_device_driver Clock_control(
     164  rtems_device_major_number major,
     165  rtems_device_minor_number minor,
     166  void *pargp
     167)
     168{
     169    rtems_libio_ioctl_args_t *args = pargp;
     170 
     171    if (args == 0)
     172        goto done;
     173 
     174    /*
     175     * This is hokey, but until we get a defined interface
     176     * to do this, it will just be this simple...
     177     */
     178 
     179    if (args->command == rtems_build_name('I', 'S', 'R', ' '))
     180    {
     181        Clock_isr(CLOCK_VECTOR);
     182    }
     183    else if (args->command == rtems_build_name('N', 'E', 'W', ' '))
     184    {
     185        ReInstall_clock(args->buffer);
     186    }
     187 
     188done:
     189    return RTEMS_SUCCESSFUL;
     190}
  • c/src/lib/libbsp/no_cpu/no_bsp/include/bsp.h

    r5250ff39 r7f6a24ab  
    2424
    2525#include <rtems.h>
     26#include <clockdrv.h>
    2627
    2728/*
     
    6869extern rtems_configuration_table BSP_Configuration;
    6970
     71/*
     72 * Console driver init
     73 */
     74 
     75rtems_device_driver console_initialize(
     76  rtems_device_major_number, rtems_device_minor_number minor, void *);
     77 
     78#define CONSOLE_DRIVER_TABLE_ENTRY \
     79  { console_initialize, NULL, NULL, NULL, NULL, NULL }
     80 
     81/*
     82 * NOTE: Use the standard Clock driver entry
     83 */
     84
    7085/* functions */
    7186
  • c/src/lib/libc/libio.c

    r5250ff39 r7f6a24ab  
    112112    }
    113113
    114     rc = rtems_semaphore_create(RTEMS_LIBIO_SEM,
    115                                 1,
    116                                 RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
    117                                 &rtems_libio_semaphore);
     114    rc = rtems_semaphore_create(
     115      RTEMS_LIBIO_SEM,
     116      1,
     117      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
     118      RTEMS_NO_PRIORITY,
     119      &rtems_libio_semaphore
     120    );
    118121    if (rc != RTEMS_SUCCESSFUL)
    119122        rtems_fatal_error_occurred(rc);
     
    200203             */
    201204
    202             rc = rtems_semaphore_create(RTEMS_LIBIO_IOP_SEM(iop - rtems_libio_iops),
    203                                         1, RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
    204                                         &iop->sem);
     205            rc = rtems_semaphore_create(
     206              RTEMS_LIBIO_IOP_SEM(iop - rtems_libio_iops),
     207              1,
     208              RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
     209              RTEMS_NO_PRIORITY,
     210              &iop->sem
     211            );
    205212            if (rc != RTEMS_SUCCESSFUL)
    206213                goto failed;
  • c/src/lib/libc/support.c

    r5250ff39 r7f6a24ab  
    2323)
    2424{
    25   the_thread->Notepads[ notepad ] = note;
     25  the_thread->RTEMS_API->Notepads[ notepad ] = note;
    2626}
    2727
     
    3232)
    3333{
    34   return the_thread->Notepads[ notepad ];
     34  return the_thread->RTEMS_API->Notepads[ notepad ];
    3535}
    3636
  • c/src/lib/libmisc/monitor/mon-task.c

    r5250ff39 r7f6a24ab  
    2222   
    2323    canonical_task->entry = rtems_thread->Start.entry_point;
    24     canonical_task->argument = rtems_thread->Start.initial_argument;
     24    canonical_task->argument = rtems_thread->Start.numeric_argument;
    2525    canonical_task->stack = rtems_thread->Start.Initial_stack.area;
    2626    canonical_task->stack_size = rtems_thread->Start.Initial_stack.size;
     
    2828    canonical_task->state = rtems_thread->current_state;
    2929    canonical_task->wait_id = rtems_thread->Wait.id;
    30     canonical_task->events = rtems_thread->pending_events;
     30    canonical_task->events = rtems_thread->RTEMS_API->pending_events;
    3131    canonical_task->modes = rtems_thread->current_modes;
    32     canonical_task->attributes = rtems_thread->attribute_set;
    33     (void) memcpy(canonical_task->notepad, rtems_thread->Notepads, sizeof(canonical_task->notepad));
     32    canonical_task->attributes = 0 /* XXX FIX ME rtems_thread->RTEMS_API->attribute_set */;
     33    (void) memcpy(canonical_task->notepad, rtems_thread->RTEMS_API->Notepads, sizeof(canonical_task->notepad));
    3434    (void) memcpy(&canonical_task->wait_args, &rtems_thread->Wait.Extra, sizeof(canonical_task->wait_args));
    3535}
  • c/src/lib/libmisc/stackchk/check.c

    r5250ff39 r7f6a24ab  
    434434    information = _Objects_Information_table[ class_index ];
    435435    if ( information && information->is_thread ) {
    436       for ( i=1 ; i < information->maximum ; i++ ) {
     436      for ( i=1 ; i <= information->maximum ; i++ ) {
    437437        the_thread = (Thread_Control *)information->local_table[ i ];
    438438        Stack_check_Dump_threads_usage( the_thread );
  • c/src/libmisc/monitor/mon-task.c

    r5250ff39 r7f6a24ab  
    2222   
    2323    canonical_task->entry = rtems_thread->Start.entry_point;
    24     canonical_task->argument = rtems_thread->Start.initial_argument;
     24    canonical_task->argument = rtems_thread->Start.numeric_argument;
    2525    canonical_task->stack = rtems_thread->Start.Initial_stack.area;
    2626    canonical_task->stack_size = rtems_thread->Start.Initial_stack.size;
     
    2828    canonical_task->state = rtems_thread->current_state;
    2929    canonical_task->wait_id = rtems_thread->Wait.id;
    30     canonical_task->events = rtems_thread->pending_events;
     30    canonical_task->events = rtems_thread->RTEMS_API->pending_events;
    3131    canonical_task->modes = rtems_thread->current_modes;
    32     canonical_task->attributes = rtems_thread->attribute_set;
    33     (void) memcpy(canonical_task->notepad, rtems_thread->Notepads, sizeof(canonical_task->notepad));
     32    canonical_task->attributes = 0 /* XXX FIX ME rtems_thread->RTEMS_API->attribute_set */;
     33    (void) memcpy(canonical_task->notepad, rtems_thread->RTEMS_API->Notepads, sizeof(canonical_task->notepad));
    3434    (void) memcpy(&canonical_task->wait_args, &rtems_thread->Wait.Extra, sizeof(canonical_task->wait_args));
    3535}
  • c/src/libmisc/stackchk/check.c

    r5250ff39 r7f6a24ab  
    434434    information = _Objects_Information_table[ class_index ];
    435435    if ( information && information->is_thread ) {
    436       for ( i=1 ; i < information->maximum ; i++ ) {
     436      for ( i=1 ; i <= information->maximum ; i++ ) {
    437437        the_thread = (Thread_Control *)information->local_table[ i ];
    438438        Stack_check_Dump_threads_usage( the_thread );
  • c/src/optman/rtems/no-sem.c

    r5250ff39 r7f6a24ab  
    3232
    3333rtems_status_code rtems_semaphore_create(
    34   rtems_name          name,
    35   unsigned32          count,
    36   rtems_attribute  attribute_set,
    37   Objects_Id         *id
     34  rtems_name            name,
     35  unsigned32            count,
     36  rtems_attribute       attribute_set,
     37  rtems_task_priority   priority_ceiling,
     38  Objects_Id           *id
    3839)
    3940{
  • c/src/optman/rtems/no-signal.c

    r5250ff39 r7f6a24ab  
    2323rtems_status_code rtems_signal_catch(
    2424  rtems_asr_entry   handler,
    25   rtems_mode mode_set
     25  rtems_mode        mode_set
    2626)
    2727{
     
    3030
    3131rtems_status_code rtems_signal_send(
    32   Objects_Id             id,
     32  rtems_id         id,
    3333  rtems_signal_set signal_set
    3434)
  • c/src/tests/mptests/mp08/init.c

    r5250ff39 r7f6a24ab  
    5151      1,
    5252      RTEMS_GLOBAL,
     53      RTEMS_NO_PRIORITY,
    5354      &Semaphore_id[ 1 ]
    5455    );
  • c/src/tests/mptests/mp10/init.c

    r5250ff39 r7f6a24ab  
    7070      0,
    7171      RTEMS_GLOBAL | RTEMS_PRIORITY,
     72      RTEMS_NO_PRIORITY,
    7273      &Semaphore_id[ 1 ]
    7374    );
  • c/src/tests/mptests/mp11/init.c

    r5250ff39 r7f6a24ab  
    8686      1,
    8787      RTEMS_GLOBAL,
     88      RTEMS_NO_PRIORITY,
    8889      &junk_id
    8990    );
  • c/src/tests/mptests/mp13/init.c

    r5250ff39 r7f6a24ab  
    6363      1,
    6464      RTEMS_GLOBAL | RTEMS_PRIORITY,
     65      RTEMS_NO_PRIORITY,
    6566      &Semaphore_id[ 1 ]
    6667    );
  • c/src/tests/mptests/mp14/init.c

    r5250ff39 r7f6a24ab  
    9595      1,
    9696      RTEMS_GLOBAL,
     97      RTEMS_NO_PRIORITY,
    9798      &Semaphore_id[ 1 ]
    9899    );
  • c/src/tests/sptests/sp09/screen05.c

    r5250ff39 r7f6a24ab  
    2424  rtems_status_code status;
    2525
    26   status = rtems_semaphore_create( 0, 1, RTEMS_DEFAULT_ATTRIBUTES, &Junk_id );
     26  status = rtems_semaphore_create(
     27    0,
     28    1,
     29    RTEMS_DEFAULT_ATTRIBUTES,
     30    RTEMS_NO_PRIORITY,
     31    &Junk_id
     32  );
    2733  fatal_directive_status(
    2834    status,
     
    3642    1,
    3743    RTEMS_DEFAULT_ATTRIBUTES,
     44    RTEMS_NO_PRIORITY,
    3845    &Semaphore_id[ 1 ]
    3946  );
     
    4552    1,
    4653    RTEMS_BINARY_SEMAPHORE,
     54    RTEMS_NO_PRIORITY,
    4755    &Semaphore_id[ 2 ]
    4856  );
     
    5563          1,
    5664          RTEMS_DEFAULT_ATTRIBUTES,
    57           &Junk_id);
     65          RTEMS_NO_PRIORITY,
     66          &Junk_id
     67      );
    5868  } while (status == RTEMS_SUCCESSFUL);
    5969
     
    6979    1,
    7080    RTEMS_INHERIT_PRIORITY | RTEMS_BINARY_SEMAPHORE | RTEMS_FIFO,
     81    RTEMS_NO_PRIORITY,
    7182    &Junk_id
    7283  );
     
    8293    1,
    8394    RTEMS_INHERIT_PRIORITY | RTEMS_COUNTING_SEMAPHORE | RTEMS_PRIORITY,
     95    RTEMS_NO_PRIORITY,
    8496    &Junk_id
    8597  );
     
    95107    2,
    96108    RTEMS_BINARY_SEMAPHORE,
     109    RTEMS_NO_PRIORITY,
    97110    &Junk_id
    98111  );
     
    108121    1,
    109122    RTEMS_GLOBAL,
     123    RTEMS_NO_PRIORITY,
    110124    &Junk_id
    111125  );
  • c/src/tests/sptests/sp12/init.c

    r5250ff39 r7f6a24ab  
    5454
    5555  status = rtems_semaphore_create(
    56      Semaphore_name[ 1 ],
    57      1,
    58      RTEMS_DEFAULT_ATTRIBUTES,
    59      &Semaphore_id[ 1 ]
     56    Semaphore_name[ 1 ],
     57    1,
     58    RTEMS_DEFAULT_ATTRIBUTES,
     59    RTEMS_NO_PRIORITY,
     60    &Semaphore_id[ 1 ]
    6061  );
    6162  directive_failed( status, "rtems_semaphore_create of SM1" );
     
    6566    0,
    6667    RTEMS_PRIORITY,
     68    RTEMS_NO_PRIORITY,
    6769    &Semaphore_id[ 2 ]
    6870  );
     
    7375    1,
    7476    RTEMS_DEFAULT_ATTRIBUTES,
     77    RTEMS_NO_PRIORITY,
    7578    &Semaphore_id[ 3 ]
    7679  );
     
    9598    0,
    9699    RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY | RTEMS_INHERIT_PRIORITY,
     100    RTEMS_NO_PRIORITY,
    97101    &Semaphore_id[ 2 ]
    98102  );
     
    111115    1,
    112116    RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY | RTEMS_INHERIT_PRIORITY,
     117    RTEMS_NO_PRIORITY,
    113118    &Semaphore_id[ 2 ]
    114119  );
     
    126131    0,
    127132    RTEMS_PRIORITY,
     133    RTEMS_NO_PRIORITY,
    128134    &Semaphore_id[ 2 ]
    129135  );
  • c/src/tests/tmtests/tm01/task1.c

    r5250ff39 r7f6a24ab  
    8383      OPERATION_COUNT,
    8484      RTEMS_DEFAULT_MODES,
     85      RTEMS_NO_PRIORITY,
    8586      &smid
    8687    );
     
    111112    OPERATION_COUNT,
    112113    RTEMS_DEFAULT_ATTRIBUTES,
     114    RTEMS_NO_PRIORITY,
    113115    &smid
    114116  );
  • c/src/tests/tmtests/tm02/task1.c

    r5250ff39 r7f6a24ab  
    108108    0,
    109109    RTEMS_DEFAULT_ATTRIBUTES,
     110    RTEMS_NO_PRIORITY,
    110111    &Semaphore_id
    111112  );
  • c/src/tests/tmtests/tm03/task1.c

    r5250ff39 r7f6a24ab  
    7272    0,
    7373    RTEMS_DEFAULT_ATTRIBUTES,
     74    RTEMS_NO_PRIORITY,
    7475    &Semaphore_id
    7576  );
  • c/src/tests/tmtests/tm04/task1.c

    r5250ff39 r7f6a24ab  
    7878    0,
    7979    RTEMS_DEFAULT_ATTRIBUTES,
     80    RTEMS_NO_PRIORITY,
    8081    &Semaphore_id
    8182  );
  • c/src/tests/tmtests/tm21/task1.c

    r5250ff39 r7f6a24ab  
    8383      OPERATION_COUNT,
    8484      RTEMS_DEFAULT_ATTRIBUTES,
     85      RTEMS_NO_PRIORITY,
    8586      &id
    8687    );
  • c/src/tests/tmtests/tm25/task1.c

    r5250ff39 r7f6a24ab  
    4242    0,
    4343    RTEMS_DEFAULT_ATTRIBUTES,
     44    RTEMS_NO_PRIORITY,
    4445    &Semaphore_id
    4546  );
  • c/src/tests/tmtests/tm26/task1.c

    r5250ff39 r7f6a24ab  
    142142    OPERATION_COUNT,
    143143    RTEMS_DEFAULT_ATTRIBUTES,
     144    RTEMS_NO_PRIORITY,
    144145    &Semaphore_id
    145146  );
  • c/src/tests/tmtests/tmoverhd/dumrtems.h

    r5250ff39 r7f6a24ab  
    173173           Empty_directive( rnid, segaddr )
    174174
    175 #define     rtems_semaphore_create( name, count, attr, smid ) \
    176            Empty_directive( name, count, attr, smid )
     175#define     rtems_semaphore_create( name, count, attr, priceil, smid ) \
     176           Empty_directive( name, count, attr, priceil, smid )
    177177#define     rtems_semaphore_delete( smid ) \
    178178           Empty_directive( smid )
  • c/src/tests/tmtests/tmoverhd/testtask.c

    r5250ff39 r7f6a24ab  
    511511               128,
    512512               RTEMS_DEFAULT_ATTRIBUTES,
     513               RTEMS_NO_PRIORITY,
    513514               &id
    514515            );
Note: See TracChangeset for help on using the changeset viewer.