changed release number to 3.2.0

This commit is contained in:
Joel Sherrill
1995-06-04 22:43:19 +00:00
parent 7c22114bf5
commit 7979e35617
9 changed files with 32 additions and 30 deletions

View File

@@ -42,7 +42,7 @@ const rtems_multiprocessing_table
*/
const char _RTEMS_version[] =
"RTEMS RELEASE V3.1.16 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
"RTEMS RELEASE V3.2.0 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
/*

View File

@@ -42,7 +42,7 @@ const rtems_multiprocessing_table
*/
const char _RTEMS_version[] =
"RTEMS RELEASE V3.1.16 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
"RTEMS RELEASE V3.2.0 (" CPU_NAME "/" RTEMS_MODEL_NAME ")";
/*

View File

@@ -104,8 +104,8 @@ typedef struct {
* during an insert on a watchdog delta chain.
*/
volatile unsigned32 _Watchdog_Sync_level;
volatile unsigned32 _Watchdog_Sync_count;
EXTERN volatile unsigned32 _Watchdog_Sync_level;
EXTERN volatile unsigned32 _Watchdog_Sync_count;
/*
* The following defines the watchdog chains which are managed

View File

@@ -104,8 +104,8 @@ typedef struct {
* during an insert on a watchdog delta chain.
*/
volatile unsigned32 _Watchdog_Sync_level;
volatile unsigned32 _Watchdog_Sync_count;
EXTERN volatile unsigned32 _Watchdog_Sync_level;
EXTERN volatile unsigned32 _Watchdog_Sync_count;
/*
* The following defines the watchdog chains which are managed

View File

@@ -588,18 +588,19 @@ void _Thread_Handler( void )
executing = _Thread_Executing;
_Thread_Dispatch_disable_level = 0;
/*
* Do the 'begin' here instead of after the context switch.
* This ensures 'switch' extensions can not be called before
* 'begin' extensions.
* Take care that 'begin' extensions get to complete before
* 'switch' extensions can run. This means must keep dispatch
* disabled until all 'begin' extensions complete.
*/
_User_extensions_Task_begin( executing );
if ( _Thread_Is_context_switch_necessary() )
_Thread_Dispatch();
/*
* At this point, the dispatch disable level BETTER be 1.
*/
_Thread_Enable_dispatch();
(*executing->Start.entry_point)( executing->Start.initial_argument );

View File

@@ -25,7 +25,7 @@
#include <clockdrv.h>
rtems_unsigned32 Clock_isrs; /* ISRs until next tick */
i960_isr Old_ticker;
i960_isr_entry Old_ticker;
volatile rtems_unsigned32 Clock_driver_ticks;
/* ticks since initialization */

View File

@@ -119,7 +119,7 @@ BSP_EXTERN i960ca_control_table *Ctl_tbl;
void bsp_cleanup( void );
i960_isr set_vector( rtems_isr_entry, unsigned int, unsigned int );
i960_isr_entry set_vector( rtems_isr_entry, unsigned int, unsigned int );
#ifdef __cplusplus
}

View File

@@ -104,8 +104,8 @@ typedef struct {
* during an insert on a watchdog delta chain.
*/
volatile unsigned32 _Watchdog_Sync_level;
volatile unsigned32 _Watchdog_Sync_count;
EXTERN volatile unsigned32 _Watchdog_Sync_level;
EXTERN volatile unsigned32 _Watchdog_Sync_count;
/*
* The following defines the watchdog chains which are managed

View File

@@ -588,18 +588,19 @@ void _Thread_Handler( void )
executing = _Thread_Executing;
_Thread_Dispatch_disable_level = 0;
/*
* Do the 'begin' here instead of after the context switch.
* This ensures 'switch' extensions can not be called before
* 'begin' extensions.
* Take care that 'begin' extensions get to complete before
* 'switch' extensions can run. This means must keep dispatch
* disabled until all 'begin' extensions complete.
*/
_User_extensions_Task_begin( executing );
if ( _Thread_Is_context_switch_necessary() )
_Thread_Dispatch();
/*
* At this point, the dispatch disable level BETTER be 1.
*/
_Thread_Enable_dispatch();
(*executing->Start.entry_point)( executing->Start.initial_argument );