Changeset 3a4ae6c in rtems for c/src/libmisc/stackchk


Ignore:
Timestamp:
09/11/95 19:35:39 (29 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ced11f99
Parents:
5072b07
Message:

The word "RTEMS" almost completely removed from the core.

Configuration Table Template file added and all tests
modified to use this. All gvar.h and conftbl.h files
removed from test directories.

Configuration parameter maximum_devices added.

Core semaphore and mutex handlers added and RTEMS API Semaphore
Manager updated to reflect this.

Initialization sequence changed to invoke API specific initialization
routines. Initialization tasks table now owned by RTEMS Tasks Manager.

Added user extension for post-switch.

Utilized user extensions to implement API specific functionality
like signal dispatching.

Added extensions to the System Initialization Thread so that an
API can register a function to be invoked while the system
is being initialized. These are largely equivalent to the
pre-driver and post-driver hooks.

Added the Modules file oar-go32_p5, modified oar-go32, and modified
the file make/custom/go32.cfg to look at an environment varable which
determines what CPU model is being used.

All BSPs updated to reflect named devices and clock driver's IOCTL
used by the Shared Memory Driver. Also merged clock isr into
main file and removed ckisr.c where possible.

Updated spsize to reflect new and moved variables.

Makefiles for the executive source and include files updated to show
break down of files into Core, RTEMS API, and Neither.

Header and inline files installed into subdirectory based on whether
logically in the Core or a part of the RTEMS API.

Location:
c/src/libmisc/stackchk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/libmisc/stackchk/check.c

    r5072b07 r3a4ae6c  
    1919 */
    2020
    21 #include <rtems/system.h>
    22 #include <rtems/extension.h>
    23 #include <rtems/fatal.h>
    24 #include <rtems/heap.h>
    25 #include <rtems/stack.h>
    26 #include <rtems/thread.h>
    27 #ifdef XXX_RTEMS_H_FIXED
    28 #include <bsp.h>
    29 #else
    30 #include <rtems/config.h>
     21#include <rtems.h>
     22
    3123extern rtems_configuration_table BSP_Configuration;
    32 #endif
    3324
    3425#include <assert.h>
     
    5748  0,                                /* rtems_task_delete  */
    5849  Stack_check_Switch_extension,     /* task_switch  */
     50  0,                                /* task_post_switch  */
    5951  Stack_check_Begin_extension,      /* task_begin   */
    6052  0,                                /* task_exitted */
     
    134126void Stack_check_Initialize( void )
    135127{
    136   rtems_status_code status;
    137   Objects_Id   id_ignored;
    138   unsigned32  *p;
     128  rtems_status_code    status;
     129  Objects_Id           id_ignored;
     130  unsigned32          *p;
     131  unsigned32           i;
     132  unsigned32           class_index;
     133  Thread_Control      *the_thread;
     134  Objects_Information *information;
    139135
    140136  if (stack_check_initialized)
     
    172168   */
    173169
     170  /* XXX
     171   *
     172   *  Technically this has not been done for any task created before this
     173   *  happened.  So just run through them and fix the situation.
     174   */
     175#if 0
    174176  if (_Thread_Executing)
    175177  {
    176178      Stack_check_Create_extension(_Thread_Executing, _Thread_Executing);
    177179  }
     180#endif
     181
     182#if 0
     183  for ( class_index = OBJECTS_CLASSES_FIRST ;
     184        class_index <= OBJECTS_CLASSES_LAST ;
     185        class_index++ ) {
     186    information = _Objects_Information_table[ class_index ];
     187    if ( information && information->is_thread ) {
     188      for ( i=1 ; i <= information->maximum ; i++ ) {
     189        the_thread = (Thread_Control *)information->local_table[ i ];
     190        Stack_check_Create_extension( the_thread, the_thread );
     191      }
     192    }
     193  }
     194#endif
    178195
    179196  /*
     
    198215 */
    199216
    200 void Stack_check_Create_extension(
     217boolean Stack_check_Create_extension(
    201218  Thread_Control *running,
    202219  Thread_Control *the_thread
    203220)
    204221{
    205     if (the_thread && (the_thread != _Thread_Executing))
     222    if (the_thread /* XXX && (the_thread != _Thread_Executing) */ )
    206223        stack_check_dope_stack(&the_thread->Start.Initial_stack);
     224
     225    return TRUE;
    207226}
    208227
  • c/src/libmisc/stackchk/internal.h

    r5072b07 r3a4ae6c  
    5151 */
    5252
    53 void Stack_check_Create_extension(
     53boolean Stack_check_Create_extension(
    5454  Thread_Control *running,
    5555  Thread_Control *the_thread
Note: See TracChangeset for help on using the changeset viewer.