summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 21:32:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 21:32:12 +0000
commitc244a9ee2c3061b70b9b187bec2dacbf3d256b7c (patch)
tree3990fec6a1cff86916cbc431f19778c9d80946de /c/src/lib/libbsp/m68k
parentAdded stack checker extension (diff)
downloadrtems-c244a9ee2c3061b70b9b187bec2dacbf3d256b7c.tar.bz2
Stack checker extension now accounted for in confdefs.h
Diffstat (limited to 'c/src/lib/libbsp/m68k')
-rw-r--r--c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/efi332/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/efi68k/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/idp/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/mvme136/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/mvme147/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/mvme147s/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c8
-rw-r--r--c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c8
11 files changed, 0 insertions, 88 deletions
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
@@ -186,14 +186,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
@@ -158,14 +158,6 @@ void bsp_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
@@ -167,14 +167,6 @@ void bsp_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
@@ -146,14 +146,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
@@ -142,14 +142,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
@@ -187,14 +187,6 @@ void bsp_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
@@ -168,14 +168,6 @@ void bsp_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
@@ -176,14 +176,6 @@ void bsp_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
@@ -236,14 +236,6 @@ void bsp_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
@@ -191,14 +191,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
@@ -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
*/