Changeset 75f09e5 in rtems
- Timestamp:
- 02/21/96 14:43:34 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- adf98bd
- Parents:
- c4b8161d
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/hppa1.1/cpu.h
rc4b8161d r75f09e5 224 224 225 225 unsigned32 interrupt_stack_size; 226 unsigned32 extra_ system_initialization_stack;226 unsigned32 extra_mpci_receive_server_stack; 227 227 228 228 /* … … 279 279 280 280 /* 281 * extra stack required by system initializationthread282 */ 283 284 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 0281 * extra stack required by the MPCI receive server thread 282 */ 283 284 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0 285 285 286 286 /* -
c/src/exec/score/cpu/i386/cpu.h
rc4b8161d r75f09e5 104 104 boolean do_zero_of_workspace; 105 105 unsigned32 interrupt_stack_size; 106 unsigned32 extra_ system_initialization_stack;106 unsigned32 extra_mpci_receive_server_stack; 107 107 108 108 unsigned32 interrupt_table_segment; … … 135 135 136 136 /* 137 * extra stack required by system initializationthread138 */ 139 140 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 1024137 * extra stack required by the MPCI receive server thread 138 */ 139 140 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 1024 141 141 142 142 /* -
c/src/exec/score/cpu/i960/cpu.h
rc4b8161d r75f09e5 146 146 boolean do_zero_of_workspace; 147 147 unsigned32 interrupt_stack_size; 148 unsigned32 extra_ system_initialization_stack;148 unsigned32 extra_mpci_receive_server_stack; 149 149 #if defined(__i960CA__) || defined(__i960_CA__) || defined(__i960CA) 150 150 i960ca_PRCB *Prcb; … … 174 174 175 175 /* 176 * extra stack required by system initialization thread 177 * 178 * NOTE: Make sure this stays positive ... 179 */ 180 181 #define CPU_SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK \ 182 (CPU_STACK_MINIMUM_SIZE) 176 * extra stack required by the MPCI receive server thread 177 */ 178 179 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK (CPU_STACK_MINIMUM_SIZE) 183 180 184 181 /* … … 192 189 * Minimum size of a thread's stack. 193 190 * 194 * NOTE: See CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK191 * NOTE: See CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 195 192 */ 196 193 -
c/src/exec/score/cpu/m68k/cpu.h
rc4b8161d r75f09e5 139 139 boolean do_zero_of_workspace; 140 140 unsigned32 interrupt_stack_size; 141 unsigned32 extra_ system_initialization_stack;141 unsigned32 extra_mpci_receive_server_stack; 142 142 m68k_isr *interrupt_vector_table; 143 143 } rtems_cpu_table; … … 167 167 168 168 /* 169 * extra stack required by system initializationthread170 */ 171 172 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 1024169 * extra stack required by the MPCI receive server thread 170 */ 171 172 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 1024 173 173 174 174 /* -
c/src/exec/score/cpu/no_cpu/cpu.c
rc4b8161d r75f09e5 138 138 /*PAGE 139 139 * 140 * _CPU_ Internal_threads_Idle_thread_body140 * _CPU_Thread_Idle_body 141 141 * 142 142 * NOTES: … … 153 153 */ 154 154 155 void _CPU_ Internal_threads_Idle_thread_body( void )155 void _CPU_Thread_Idle_body( void ) 156 156 { 157 157 -
c/src/exec/score/cpu/no_cpu/cpu.h
rc4b8161d r75f09e5 208 208 * Does this port provide a CPU dependent IDLE task implementation? 209 209 * 210 * If TRUE, then the routine _CPU_ Internal_threads_Idle_thread_body210 * If TRUE, then the routine _CPU_Thread_Idle_body 211 211 * must be provided and is the default IDLE thread body instead of 212 * _ Internal_threads_Idle_thread_body.212 * _CPU_Thread_Idle_body. 213 213 * 214 214 * If FALSE, then use the generic IDLE thread body if the BSP does … … 344 344 boolean do_zero_of_workspace; 345 345 unsigned32 interrupt_stack_size; 346 unsigned32 extra_ system_initialization_stack;346 unsigned32 extra_mpci_receive_server_stack; 347 347 unsigned32 some_other_cpu_dependent_info; 348 348 } rtems_cpu_table; … … 402 402 /* 403 403 * Amount of extra stack (above minimum stack size) required by 404 * system initializationthread. Remember that in a multiprocessor405 * system th e system intialization thread becomes the MP server thread.406 */ 407 408 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 0404 * MPCI receive server thread. Remember that in a multiprocessor 405 * system this thread must exist and be able to process all directives. 406 */ 407 408 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0 409 409 410 410 /* … … 760 760 761 761 /* 762 * _CPU_ Internal_threads_Idle_thread_body762 * _CPU_Thread_Idle_body 763 763 * 764 764 * This routine is the CPU dependent IDLE thread body. … … 768 768 */ 769 769 770 void _CPU_ Internal_threads_Idle_thread_body( void );770 void _CPU_Thread_Idle_body( void ); 771 771 772 772 /* -
c/src/exec/score/cpu/powerpc/cpu.h
rc4b8161d r75f09e5 235 235 * Does this port provide a CPU dependent IDLE task implementation? 236 236 * 237 * If TRUE, then the routine _CPU_ Internal_threads_Idle_thread_body237 * If TRUE, then the routine _CPU_Thread_Idle_body 238 238 * must be provided and is the default IDLE thread body instead of 239 * _ Internal_threads_Idle_thread_body.239 * _CPU_Thread_Idle_body. 240 240 * 241 241 * If FALSE, then use the generic IDLE thread body if the BSP does … … 442 442 boolean do_zero_of_workspace; 443 443 unsigned32 interrupt_stack_size; 444 unsigned32 extra_ system_initialization_stack;444 unsigned32 extra_mpci_receive_server_stack; 445 445 unsigned32 clicks_per_usec; /* Timer clicks per microsecond */ 446 446 unsigned32 serial_per_sec; /* Serial clocks per second */ … … 531 531 /* 532 532 * Amount of extra stack (above minimum stack size) required by 533 * system initializationthread. Remember that in a multiprocessor534 * system th e system intialization thread becomes the MP server thread.535 */ 536 537 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 0533 * MPCI receive server thread. Remember that in a multiprocessor 534 * system this thread must exist and be able to process all directives. 535 */ 536 537 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0 538 538 539 539 /* -
c/src/exec/score/cpu/sparc/cpu.c
rc4b8161d r75f09e5 377 377 /*PAGE 378 378 * 379 * _CPU_ Internal_threads_Idle_thread_body379 * _CPU_Thread_Idle_body 380 380 * 381 381 * Some SPARC implementations have low power, sleep, or idle modes. This … … 393 393 #if defined(erc32) 394 394 395 void _CPU_ Internal_threads_Idle_thread_body( void )395 void _CPU_Thread_Idle_body( void ) 396 396 { 397 397 while (1) { -
c/src/exec/score/cpu/sparc/cpu.h
rc4b8161d r75f09e5 146 146 * Does this port provide a CPU dependent IDLE task implementation? 147 147 * 148 * If TRUE, then the routine _CPU_ Internal_threads_Idle_thread_body148 * If TRUE, then the routine _CPU_Thread_Idle_body 149 149 * must be provided and is the default IDLE thread body instead of 150 * _ Internal_threads_Idle_thread_body.150 * _CPU_Thread_Idle_body. 151 151 * 152 152 * If FALSE, then use the generic IDLE thread body if the BSP does … … 508 508 boolean do_zero_of_workspace; 509 509 unsigned32 interrupt_stack_size; 510 unsigned32 extra_ system_initialization_stack;510 unsigned32 extra_mpci_receive_server_stack; 511 511 } rtems_cpu_table; 512 512 … … 602 602 /* 603 603 * Amount of extra stack (above minimum stack size) required by 604 * system initializationthread. Remember that in a multiprocessor605 * system th e system intialization thread becomes the MP server thread.606 */ 607 608 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 1024604 * MPCI receive server thread. Remember that in a multiprocessor 605 * system this thread must exist and be able to process all directives. 606 */ 607 608 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 1024 609 609 610 610 /* … … 899 899 900 900 /* 901 * _CPU_ Internal_threads_Idle_thread_body901 * _CPU_Thread_Idle_body 902 902 * 903 903 * Some SPARC implementations have low power, sleep, or idle modes. This … … 905 905 */ 906 906 907 void _CPU_ Internal_threads_Idle_thread_body( void );907 void _CPU_Thread_Idle_body( void ); 908 908 909 909 #endif /* CPU_PROVIDES_IDLE_THREAD_BODY */ -
c/src/exec/score/cpu/unix/cpu.c
rc4b8161d r75f09e5 340 340 /*PAGE 341 341 * 342 * _CPU_ Internal_threads_Idle_thread_body342 * _CPU_Thread_Idle_body 343 343 * 344 344 * Stop until we get a signal which is the logically the same thing … … 348 348 */ 349 349 350 void _CPU_ Internal_threads_Idle_thread_body( void )350 void _CPU_Thread_Idle_body( void ) 351 351 { 352 352 while (1) -
c/src/exec/score/cpu/unix/cpu.h
rc4b8161d r75f09e5 222 222 * Does this port provide a CPU dependent IDLE task implementation? 223 223 * 224 * If TRUE, then the routine _CPU_ Internal_threads_Idle_thread_body224 * If TRUE, then the routine _CPU_Thread_Idle_body 225 225 * must be provided and is the default IDLE thread body instead of 226 * _ Internal_threads_Idle_thread_body.226 * _CPU_Thread_Idle_body. 227 227 * 228 228 * If FALSE, then use the generic IDLE thread body if the BSP does … … 472 472 boolean do_zero_of_workspace; 473 473 unsigned32 interrupt_stack_size; 474 unsigned32 extra_ system_initialization_stack;474 unsigned32 extra_mpci_receive_server_stack; 475 475 } rtems_cpu_table; 476 476 … … 543 543 /* 544 544 * Amount of extra stack (above minimum stack size) required by 545 * system initializationthread. Remember that in a multiprocessor546 * system th e system intialization thread becomes the MP server thread.547 */ 548 549 #define CPU_ SYSTEM_INITIALIZATION_THREAD_EXTRA_STACK 0545 * MPCI receive server thread. Remember that in a multiprocessor 546 * system this thread must exist and be able to process all directives. 547 */ 548 549 #define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0 550 550 551 551 /* … … 874 874 875 875 /* 876 * _CPU_ Internal_threads_Idle_thread_body876 * _CPU_Thread_Idle_body 877 877 * 878 878 * This routine is the CPU dependent IDLE thread body. … … 882 882 */ 883 883 884 void _CPU_ Internal_threads_Idle_thread_body( void );884 void _CPU_Thread_Idle_body( void ); 885 885 886 886 /* -
cpukit/score/cpu/no_cpu/cpu.c
rc4b8161d r75f09e5 138 138 /*PAGE 139 139 * 140 * _CPU_ Internal_threads_Idle_thread_body140 * _CPU_Thread_Idle_body 141 141 * 142 142 * NOTES: … … 153 153 */ 154 154 155 void _CPU_ Internal_threads_Idle_thread_body( void )155 void _CPU_Thread_Idle_body( void ) 156 156 { 157 157 -
cpukit/score/cpu/sparc/cpu.c
rc4b8161d r75f09e5 377 377 /*PAGE 378 378 * 379 * _CPU_ Internal_threads_Idle_thread_body379 * _CPU_Thread_Idle_body 380 380 * 381 381 * Some SPARC implementations have low power, sleep, or idle modes. This … … 393 393 #if defined(erc32) 394 394 395 void _CPU_ Internal_threads_Idle_thread_body( void )395 void _CPU_Thread_Idle_body( void ) 396 396 { 397 397 while (1) { -
cpukit/score/cpu/unix/cpu.c
rc4b8161d r75f09e5 340 340 /*PAGE 341 341 * 342 * _CPU_ Internal_threads_Idle_thread_body342 * _CPU_Thread_Idle_body 343 343 * 344 344 * Stop until we get a signal which is the logically the same thing … … 348 348 */ 349 349 350 void _CPU_ Internal_threads_Idle_thread_body( void )350 void _CPU_Thread_Idle_body( void ) 351 351 { 352 352 while (1)
Note: See TracChangeset
for help on using the changeset viewer.