Changeset 7979e35 in rtems


Ignore:
Timestamp:
06/04/95 22:43:19 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
e8512eb
Parents:
7c22114b
Message:

changed release number to 3.2.0

Files:
9 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/sapi/headers/sptables.h

    r7c22114b r7979e35  
    4343
    4444const char _RTEMS_version[] =
    45   "RTEMS RELEASE V3.1.16 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
     45  "RTEMS RELEASE V3.2.0 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
    4646
    4747
  • c/src/exec/sapi/include/rtems/sptables.h

    r7c22114b r7979e35  
    4343
    4444const char _RTEMS_version[] =
    45   "RTEMS RELEASE V3.1.16 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
     45  "RTEMS RELEASE V3.2.0 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
    4646
    4747
  • c/src/exec/score/headers/watchdog.h

    r7c22114b r7979e35  
    105105 */
    106106
    107 volatile unsigned32  _Watchdog_Sync_level;
    108 volatile unsigned32  _Watchdog_Sync_count;
     107EXTERN volatile unsigned32  _Watchdog_Sync_level;
     108EXTERN volatile unsigned32  _Watchdog_Sync_count;
    109109
    110110/*
  • c/src/exec/score/include/rtems/score/watchdog.h

    r7c22114b r7979e35  
    105105 */
    106106
    107 volatile unsigned32  _Watchdog_Sync_level;
    108 volatile unsigned32  _Watchdog_Sync_count;
     107EXTERN volatile unsigned32  _Watchdog_Sync_level;
     108EXTERN volatile unsigned32  _Watchdog_Sync_count;
    109109
    110110/*
  • c/src/exec/score/src/thread.c

    r7c22114b r7979e35  
    589589  executing = _Thread_Executing;
    590590
    591   _Thread_Dispatch_disable_level = 0;
    592 
    593591  /*
    594    * Do the 'begin' here instead of after the context switch.
    595    * This ensures 'switch' extensions can not be called before
    596    * 'begin' extensions.
     592   * Take care that 'begin' extensions get to complete before
     593   * 'switch' extensions can run.  This means must keep dispatch
     594   * disabled until all 'begin' extensions complete.
    597595   */
    598 
     596 
    599597  _User_extensions_Task_begin( executing );
    600 
    601   if ( _Thread_Is_context_switch_necessary() )
    602     _Thread_Dispatch();
    603 
     598 
     599  /*
     600   *  At this point, the dispatch disable level BETTER be 1.
     601   */
     602
     603  _Thread_Enable_dispatch();
     604 
    604605  (*executing->Start.entry_point)( executing->Start.initial_argument );
    605606
  • c/src/lib/libbsp/i960/cvme961/clock/ckinit.c

    r7c22114b r7979e35  
    2626
    2727rtems_unsigned32 Clock_isrs;              /* ISRs until next tick */
    28 i960_isr         Old_ticker;
     28i960_isr_entry   Old_ticker;
    2929volatile rtems_unsigned32 Clock_driver_ticks;
    3030                                          /* ticks since initialization */
  • c/src/lib/libbsp/i960/cvme961/include/bsp.h

    r7c22114b r7979e35  
    120120void bsp_cleanup( void );
    121121
    122 i960_isr set_vector( rtems_isr_entry, unsigned int, unsigned int );
     122i960_isr_entry set_vector( rtems_isr_entry, unsigned int, unsigned int );
    123123
    124124#ifdef __cplusplus
  • cpukit/score/include/rtems/score/watchdog.h

    r7c22114b r7979e35  
    105105 */
    106106
    107 volatile unsigned32  _Watchdog_Sync_level;
    108 volatile unsigned32  _Watchdog_Sync_count;
     107EXTERN volatile unsigned32  _Watchdog_Sync_level;
     108EXTERN volatile unsigned32  _Watchdog_Sync_count;
    109109
    110110/*
  • cpukit/score/src/thread.c

    r7c22114b r7979e35  
    589589  executing = _Thread_Executing;
    590590
    591   _Thread_Dispatch_disable_level = 0;
    592 
    593591  /*
    594    * Do the 'begin' here instead of after the context switch.
    595    * This ensures 'switch' extensions can not be called before
    596    * 'begin' extensions.
     592   * Take care that 'begin' extensions get to complete before
     593   * 'switch' extensions can run.  This means must keep dispatch
     594   * disabled until all 'begin' extensions complete.
    597595   */
    598 
     596 
    599597  _User_extensions_Task_begin( executing );
    600 
    601   if ( _Thread_Is_context_switch_necessary() )
    602     _Thread_Dispatch();
    603 
     598 
     599  /*
     600   *  At this point, the dispatch disable level BETTER be 1.
     601   */
     602
     603  _Thread_Enable_dispatch();
     604 
    604605  (*executing->Start.entry_point)( executing->Start.initial_argument );
    605606
Note: See TracChangeset for help on using the changeset viewer.