summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-03 22:26:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-03 22:26:42 +0000
commit611fc9f90456f5105661e47ac884704e83ec390d (patch)
tree600a1a22318374ac41e79b1b7cb80fa259f05276 /c/src/lib/libbsp/shared/bootcard.c
parent2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-611fc9f90456f5105661e47ac884704e83ec390d.tar.bz2
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* bootcard.c: Moved most of the remaining CPU Table fields to the Configuration Table. This included pretasking_hook, predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack, stack_allocate_hook, and stack_free_hook. As a side-effect of this effort some multiprocessing code was made conditional and some style clean up occurred.
Diffstat (limited to 'c/src/lib/libbsp/shared/bootcard.c')
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index 339dba4acf..5685cbaffd 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -80,15 +80,7 @@ int boot_card(int argc, char **argv, char **envp)
* right most of the time.
*/
- Cpu_table.pretasking_hook = NULL;
- Cpu_table.predriver_hook = NULL;
- Cpu_table.postdriver_hook = NULL;
- Cpu_table.idle_task = NULL;
- Cpu_table.do_zero_of_workspace = FALSE;
Cpu_table.interrupt_stack_size = RTEMS_MINIMUM_STACK_SIZE;
- Cpu_table.extra_mpci_receive_server_stack = 0;
- Cpu_table.stack_allocate_hook = NULL;
- Cpu_table.stack_free_hook = NULL;
/*
* Copy the configuration table so we and the BSP wants to change it.