Changeset 8cbbe312 in rtems


Ignore:
Timestamp:
02/21/96 14:47:03 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0e0d88b
Parents:
adf98bd
Message:

Dispersal of internal thread handler resulted in the SYSI task being
only required in a multiprocessor system. It was replace by the MPCI
Receive Server. As a result, the CPU Table field for extra stack for
the SYSI task was changed to be extra stack for the MPCI Receive Server.

Files:
17 edited

Legend:

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

    radf98bd r8cbbe312  
    9494
    9595/*
    96  * Called for all user TASKS (system tasks are SYSI and IDLE)
     96 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    9797 */
    9898
     
    116116
    117117/*
    118  * Called for all user TASKS (system tasks are SYSI and IDLE)
     118 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    119119 *
    120120 *  NOTE: When using RTEMS fake stat, fstat, and isatty, all output
  • c/src/lib/libbsp/hppa1.1/simhppa/startup/bspstart.c

    radf98bd r8cbbe312  
    3030#include <bsp.h>
    3131#include <rtems/libio.h>
    32 #include <rtems/intthrd.h>
    3332
    3433#include <libcsupport.h>
     
    8988     */
    9089
    91     if (heir_task == _Internal_threads_Idle_thread)
     90    if (heir_task == _Thread_Idle)
    9291        CPU_HPPA_CLICKS_PER_TICK = fast_clock;
    93     else if (current_task == _Internal_threads_Idle_thread)
     92    else if (current_task == _Thread_Idle)
    9493        CPU_HPPA_CLICKS_PER_TICK = normal_clock;
    9594}
     
    346345    Cpu_table.interrupt_stack_size = (12 * 1024);
    347346
    348     Cpu_table.extra_system_initialization_stack = 0;
     347    Cpu_table.extra_mpci_receive_server_stack = 0;
    349348
    350349    /*
  • c/src/lib/libbsp/i386/force386/startup/bspstart.c

    radf98bd r8cbbe312  
    180180  Cpu_table.interrupt_stack_size = 4096;
    181181
    182   Cpu_table.extra_system_initialization_stack = 0;
     182  Cpu_table.extra_mpci_receive_server_stack = 0;
    183183
    184184  /*
  • c/src/lib/libbsp/i386/go32/startup/bspstart.c

    radf98bd r8cbbe312  
    175175  Cpu_table.interrupt_table_offset = (void *)0;
    176176  Cpu_table.interrupt_stack_size = 4096;
    177   Cpu_table.extra_system_initialization_stack = 0;
     177  Cpu_table.extra_mpci_receive_server_stack = 0;
    178178
    179179  /*
  • c/src/lib/libbsp/i960/cvme961/startup/bspstart.c

    radf98bd r8cbbe312  
    195195  Cpu_table.interrupt_stack_size = 4096;
    196196
    197   Cpu_table.extra_system_initialization_stack = 0;
     197  Cpu_table.extra_mpci_receive_server_stack = 0;
    198198
    199199  Cpu_table.Prcb = Prcb;
  • c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c

    radf98bd r8cbbe312  
    202202  Cpu_table.interrupt_stack_size = 4096;
    203203
    204   Cpu_table.extra_system_initialization_stack = 0;
     204  Cpu_table.extra_mpci_receive_server_stack = 0;
    205205
    206206  /*
  • c/src/lib/libbsp/m68k/efi332/startup/bspstart.c

    radf98bd r8cbbe312  
    167167  Cpu_table.interrupt_stack_size = 4096;
    168168
    169   Cpu_table.extra_system_initialization_stack = 0;
     169  Cpu_table.extra_mpci_receive_server_stack = 0;
    170170
    171171  /*
  • c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c

    radf98bd r8cbbe312  
    177177  Cpu_table.interrupt_stack_size = 4096;
    178178
    179   Cpu_table.extra_system_initialization_stack = 0;
     179  Cpu_table.extra_mpci_receive_server_stack = 0;
    180180
    181181  /*
  • c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c

    radf98bd r8cbbe312  
    234234  Cpu_table.interrupt_stack_size = 4096;
    235235
    236   Cpu_table.extra_system_initialization_stack = 0;
     236  Cpu_table.extra_mpci_receive_server_stack = 0;
    237237
    238238  /*
  • c/src/lib/libbsp/m68k/idp/startup/bspstart.c

    radf98bd r8cbbe312  
    209209  Cpu_table.interrupt_stack_size = 4096;
    210210
    211   Cpu_table.extra_system_initialization_stack = 0;
     211  Cpu_table.extra_mpci_receive_server_stack = 0;
    212212
    213213  /*
  • c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c

    radf98bd r8cbbe312  
    192192  Cpu_table.interrupt_stack_size = 4096;
    193193
    194   Cpu_table.extra_system_initialization_stack = 0;
     194  Cpu_table.extra_mpci_receive_server_stack = 0;
    195195
    196196  /*
  • c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c

    radf98bd r8cbbe312  
    209209  Cpu_table.interrupt_stack_size = 4096;
    210210
    211   Cpu_table.extra_system_initialization_stack = 0;
     211  Cpu_table.extra_mpci_receive_server_stack = 0;
    212212
    213213  /*
  • c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c

    radf98bd r8cbbe312  
    238238  Cpu_table.interrupt_stack_size = 4096;
    239239
    240   Cpu_table.extra_system_initialization_stack = 0;
     240  Cpu_table.extra_mpci_receive_server_stack = 0;
    241241
    242242  /*
  • c/src/lib/libbsp/powerpc/papyrus/startup/bspstart.c

    radf98bd r8cbbe312  
    245245  Cpu_table.interrupt_stack_size = 4 * 1024;
    246246
    247   Cpu_table.extra_system_initialization_stack = 0;
     247  Cpu_table.extra_mpci_receive_server_stack = 0;
    248248
    249249  /*
  • c/src/lib/libbsp/unix/posix/startup/bspstart.c

    radf98bd r8cbbe312  
    322322    Cpu_table.interrupt_stack_size = (12 * 1024);
    323323
    324     Cpu_table.extra_system_initialization_stack = 0;
     324    Cpu_table.extra_mpci_receive_server_stack = 0;
    325325
    326326    /*
  • c/src/lib/libc/newlibc.c

    radf98bd r8cbbe312  
    9494
    9595/*
    96  * Called for all user TASKS (system tasks are SYSI and IDLE)
     96 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    9797 */
    9898
     
    116116
    117117/*
    118  * Called for all user TASKS (system tasks are SYSI and IDLE)
     118 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    119119 *
    120120 *  NOTE: When using RTEMS fake stat, fstat, and isatty, all output
  • cpukit/libcsupport/src/newlibc.c

    radf98bd r8cbbe312  
    9494
    9595/*
    96  * Called for all user TASKS (system tasks are SYSI and IDLE)
     96 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    9797 */
    9898
     
    116116
    117117/*
    118  * Called for all user TASKS (system tasks are SYSI and IDLE)
     118 * Called for all user TASKS (system tasks are MPCI Receive Server and IDLE)
    119119 *
    120120 *  NOTE: When using RTEMS fake stat, fstat, and isatty, all output
Note: See TracChangeset for help on using the changeset viewer.