From c244a9ee2c3061b70b9b187bec2dacbf3d256b7c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 14 Apr 1998 21:32:12 +0000 Subject: Stack checker extension now accounted for in confdefs.h --- c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/efi332/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/idp/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c | 8 -------- c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c | 8 -------- 11 files changed, 88 deletions(-) (limited to 'c/src/lib/libbsp/m68k') diff --git a/c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c b/c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c index 2ae0703873..000f0b0004 100644 --- a/c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c @@ -185,14 +185,6 @@ void bsp_start( void ) console_reserve_resources( &BSP_Configuration ); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/efi332/startup/bspstart.c b/c/src/lib/libbsp/m68k/efi332/startup/bspstart.c index ad3afcd7f4..ada1700cc1 100644 --- a/c/src/lib/libbsp/m68k/efi332/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/efi332/startup/bspstart.c @@ -157,14 +157,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (((unsigned int)_end + STACK_SIZE + 0x100) & 0xffffff00); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c b/c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c index c1eb7b47b3..ed4ffd8712 100644 --- a/c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c @@ -166,14 +166,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (((unsigned int)_end + STACK_SIZE + 0x100) & 0xffffff00); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c b/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c index 53dc90eb3b..4c027b7f38 100644 --- a/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c @@ -145,14 +145,6 @@ void bsp_start( void ) BSP_Configuration = Configuration; - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c b/c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c index c9d7847a54..8546370ee1 100644 --- a/c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c @@ -141,14 +141,6 @@ void bsp_start( void ) BSP_Configuration = Configuration; - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/idp/startup/bspstart.c b/c/src/lib/libbsp/m68k/idp/startup/bspstart.c index fb34077c3a..d75d223af3 100644 --- a/c/src/lib/libbsp/m68k/idp/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/idp/startup/bspstart.c @@ -186,14 +186,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (RAM_END - BSP_Configuration.work_space_size); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c b/c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c index 80fed12d14..41ea519cd1 100644 --- a/c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c @@ -167,14 +167,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (RAM_END - BSP_Configuration.work_space_size); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c b/c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c index 280657c8ea..adf5fa48c0 100644 --- a/c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c @@ -175,14 +175,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (RAM_END - BSP_Configuration.work_space_size); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c b/c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c index 42874bc84f..8137e1e9f0 100644 --- a/c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c @@ -235,14 +235,6 @@ void bsp_start( void ) BSP_Configuration.work_space_start = (void *) (RAM_END - BSP_Configuration.work_space_size); - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c b/c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c index dfc969a0a4..f0af7dca97 100644 --- a/c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c @@ -190,14 +190,6 @@ void bsp_start( void ) BSP_Configuration = Configuration; - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ diff --git a/c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c b/c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c index 721aa58c82..03caa34253 100644 --- a/c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c +++ b/c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c @@ -144,14 +144,6 @@ void bsp_start( void ) BSP_Configuration = Configuration; - /* - * Add another extension if using the stack checker - */ - -#ifdef STACK_CHECKER_ON - BSP_Configuration.maximum_extensions++; -#endif - /* * Tell libio how many fd's we want and allow it to tweak config */ -- cgit v1.2.3