2008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>

* bootcard.c: Improve formatting and comments.
This commit is contained in:
Joel Sherrill
2008-05-06 19:28:02 +00:00
parent f3cc5cf35d
commit 7492598196
2 changed files with 12 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* bootcard.c: Improve formatting and comments.
2008-03-20 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeTsi148.c: type of 5th argument

View File

@@ -42,7 +42,11 @@ extern void bsp_cleanup( void );
char *rtems_progname;
int boot_card(int argc, char **argv, char **envp)
int boot_card(
int argc,
char **argv,
char **envp
)
{
static char *argv_pointer = NULL;
static char *envp_pointer = NULL;
@@ -57,9 +61,9 @@ int boot_card(int argc, char **argv, char **envp)
rtems_interrupt_disable( bsp_isr_level );
/*
* Set things up so c_rtems_main() is called with real pointers for
* argv and envp. If the BSP has passed us something useful, then
* pass it on. Somehow we need to eventually make this available to
* Set things up so we have real pointers for argv and envp.
* If the BSP has passed us something useful, then pass it on.
* Somehow we need to eventually make this available to
* a real main() in user land. :)
*/