Changeset 7979e35 in rtems
- Timestamp:
- 06/04/95 22:43:19 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e8512eb
- Parents:
- 7c22114b
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/sapi/headers/sptables.h
r7c22114b r7979e35 43 43 44 44 const 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 ")"; 46 46 47 47 -
c/src/exec/sapi/include/rtems/sptables.h
r7c22114b r7979e35 43 43 44 44 const 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 ")"; 46 46 47 47 -
c/src/exec/score/headers/watchdog.h
r7c22114b r7979e35 105 105 */ 106 106 107 volatile unsigned32 _Watchdog_Sync_level;108 volatile unsigned32 _Watchdog_Sync_count;107 EXTERN volatile unsigned32 _Watchdog_Sync_level; 108 EXTERN volatile unsigned32 _Watchdog_Sync_count; 109 109 110 110 /* -
c/src/exec/score/include/rtems/score/watchdog.h
r7c22114b r7979e35 105 105 */ 106 106 107 volatile unsigned32 _Watchdog_Sync_level;108 volatile unsigned32 _Watchdog_Sync_count;107 EXTERN volatile unsigned32 _Watchdog_Sync_level; 108 EXTERN volatile unsigned32 _Watchdog_Sync_count; 109 109 110 110 /* -
c/src/exec/score/src/thread.c
r7c22114b r7979e35 589 589 executing = _Thread_Executing; 590 590 591 _Thread_Dispatch_disable_level = 0;592 593 591 /* 594 * Do the 'begin' here instead of after the context switch.595 * This ensures 'switch' extensions can not be called before596 * '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. 597 595 */ 598 596 599 597 _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 604 605 (*executing->Start.entry_point)( executing->Start.initial_argument ); 605 606 -
c/src/lib/libbsp/i960/cvme961/clock/ckinit.c
r7c22114b r7979e35 26 26 27 27 rtems_unsigned32 Clock_isrs; /* ISRs until next tick */ 28 i960_isr 28 i960_isr_entry Old_ticker; 29 29 volatile rtems_unsigned32 Clock_driver_ticks; 30 30 /* ticks since initialization */ -
c/src/lib/libbsp/i960/cvme961/include/bsp.h
r7c22114b r7979e35 120 120 void bsp_cleanup( void ); 121 121 122 i960_isr set_vector( rtems_isr_entry, unsigned int, unsigned int );122 i960_isr_entry set_vector( rtems_isr_entry, unsigned int, unsigned int ); 123 123 124 124 #ifdef __cplusplus -
cpukit/score/include/rtems/score/watchdog.h
r7c22114b r7979e35 105 105 */ 106 106 107 volatile unsigned32 _Watchdog_Sync_level;108 volatile unsigned32 _Watchdog_Sync_count;107 EXTERN volatile unsigned32 _Watchdog_Sync_level; 108 EXTERN volatile unsigned32 _Watchdog_Sync_count; 109 109 110 110 /* -
cpukit/score/src/thread.c
r7c22114b r7979e35 589 589 executing = _Thread_Executing; 590 590 591 _Thread_Dispatch_disable_level = 0;592 593 591 /* 594 * Do the 'begin' here instead of after the context switch.595 * This ensures 'switch' extensions can not be called before596 * '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. 597 595 */ 598 596 599 597 _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 604 605 (*executing->Start.entry_point)( executing->Start.initial_argument ); 605 606
Note: See TracChangeset
for help on using the changeset viewer.