Changeset 8cbbe312 in rtems for c/src/lib/libbsp/hppa1.1


Ignore:
Timestamp:
02/21/96 14:47:03 (28 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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    /*
Note: See TracChangeset for help on using the changeset viewer.