Changeset 178592c in rtems


Ignore:
Timestamp:
07/22/02 12:32:34 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
eb5100b
Parents:
33b52ec
Message:

2002-07-22 Ralf Corsepius <corsepiu@…>

  • startup/bspstart.c: Per PR252 removed hack that tripled size of RTEMS Workspace when POSIX is configured. This was probably done to account for confdefs.h missing some application requirements.
Location:
c/src/lib/libbsp/i386/i386ex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/i386ex/ChangeLog

    r33b52ec r178592c  
     12002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * startup/bspstart.c: Per PR252 removed hack that tripled size of
     4        RTEMS Workspace when POSIX is configured.  This was probably done to
     5        account for confdefs.h missing some application requirements.
     6
    172002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/i386/i386ex/startup/bspstart.c

    r33b52ec r178592c  
    9494void bsp_start( void )
    9595{
    96      /*
    97     *  we do not use the pretasking_hook.
     96  /*
     97   *  we do not use the pretasking_hook.
    9898   */
    9999
     
    105105  Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
    106106
    107 #if defined(RTEMS_POSIX_API)
    108   BSP_Configuration.work_space_size *= 3;
    109 #endif
    110 
    111     BSP_Configuration.work_space_start = (void *)
     107  BSP_Configuration.work_space_start = (void *)
    112108     RAM_END - BSP_Configuration.work_space_size;
    113 #ifdef DEBUG 
     109#ifdef DEBUG
    114110  printk("workspace size = 0x%x\nstart = 0x%x, RAM_END = 0x%x\n",BSP_Configuration.work_space_size,  BSP_Configuration.work_space_start, RAM_END );
    115111#endif
Note: See TracChangeset for help on using the changeset viewer.