]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - rtems/gw/cangw/init.c
Changed all (I think) files using CRLF to use LF.
[can-benchmark.git] / rtems / gw / cangw / init.c
index c8057b2f025f2dc08c1cb923c80ed84e0db3a638..51476733cedd500f652f56f8d9316dece9a51be7 100644 (file)
@@ -1,29 +1,7 @@
-/*  Init
- *
- *  This routine is the initialization task for this test program.
- *  It is called from init_exec and has the responsibility for creating
- *  and starting the tasks that make up the test.  If the time of day
- *  clock is required for the test, it should also be set to a known
- *  value by this function.
- *
- *  Input parameters:  NONE
- *
- *  Output parameters:  NONE
- *
- *  COPYRIGHT (c) 1989-1999.
- *  On-Line Applications Research Corporation (OAR).
- *
- *  The license and distribution terms for this file may be
- *  found in the file LICENSE in this distribution or at
- *  http://www.rtems.com/license/LICENSE.
- *
- *  $Id: init.c,v 1.12.4.1 2003/09/04 18:46:30 joel Exp $
- */
-
 #define CONFIGURE_INIT
 #include <system_def.h>
 #include "system.h"
 #define CONFIGURE_INIT
 #include <system_def.h>
 #include "system.h"
-#include "app_def.h"\r
+#include "app_def.h"
 #include <unistd.h>
 #include <fcntl.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <fcntl.h>
 #include <stdio.h>
         __XSTRING(major) "." __XSTRING(minor) "." __XSTRING(patch)
 
 #define RTEMS_VER_CODE VER_CODE(__RTEMS_MAJOR__ ,__RTEMS_MINOR__ ,__RTEMS_REVISION__)
         __XSTRING(major) "." __XSTRING(minor) "." __XSTRING(patch)
 
 #define RTEMS_VER_CODE VER_CODE(__RTEMS_MAJOR__ ,__RTEMS_MINOR__ ,__RTEMS_REVISION__)
-\r
-\r
-#define CONFIGURE_SHELL_USER_COMMANDS &shell_command_print_can_totals\r
-#define CONFIGURE_SHELL_COMMANDS_INIT\r
-#define CONFIGURE_SHELL_COMMANDS_ALL\r
-\r
-#include <rtems/shellconfig.h>\r
-#include <rtems/shell.h>\r
-\r
+
+
+#define CONFIGURE_SHELL_USER_COMMANDS &shell_command_print_can_totals
+#define CONFIGURE_SHELL_COMMANDS_INIT
+#define CONFIGURE_SHELL_COMMANDS_ALL
+
+#include <rtems/shellconfig.h>
+#include <rtems/shell.h>
+
 
 rtems_task Init(rtems_task_argument ignored){
     rtems_status_code status;
 
 rtems_task Init(rtems_task_argument ignored){
     rtems_status_code status;
@@ -64,28 +42,28 @@ rtems_task Init(rtems_task_argument ignored){
     printf( "Starting application " SW_VER_ID " v "
             BUILD_VERSION_STRING(SW_VER_MAJOR,SW_VER_MINOR,SW_VER_PATCH)
         "\n" );
     printf( "Starting application " SW_VER_ID " v "
             BUILD_VERSION_STRING(SW_VER_MAJOR,SW_VER_MINOR,SW_VER_PATCH)
         "\n" );
-\r
-    /* Inits */\r
-#ifdef BENCH_BUILD\r
-    start_can(0, NULL);\r
-    start_net(0, NULL);\r
-#ifdef LOAD_BUILD\r
-    start_load(0, NULL);\r
-#endif\r
-#endif\r
-\r
-#ifndef BENCH_BUILD        \r
-    rtems_shell_init(\r
-        "SHLL", /* task name */\r
-        RTEMS_MINIMUM_STACK_SIZE * 4, /* task stack size */\r
-        100, /* task priority */\r
-        "/dev/console", /* device name */\r
-        true, /* run forever */\r
-        false, /* wait for shell to terminate */\r
-        NULL /* login check function, use NULL to disable a login check */\r
-    );  \r
-#endif    \r
-    \r
+
+    /* Inits */
+#ifdef BENCH_BUILD
+    start_can(0, NULL);
+    start_net(0, NULL);
+#ifdef LOAD_BUILD
+    start_load(0, NULL);
+#endif
+#endif
+
+#ifndef BENCH_BUILD        
+    rtems_shell_init(
+        "SHLL", /* task name */
+        RTEMS_MINIMUM_STACK_SIZE * 4, /* task stack size */
+        100, /* task priority */
+        "/dev/console", /* device name */
+        true, /* run forever */
+        false, /* wait for shell to terminate */
+        NULL /* login check function, use NULL to disable a login check */
+    );  
+#endif    
+    
     status = rtems_task_delete( RTEMS_SELF );
     
     exit( 0 );
     status = rtems_task_delete( RTEMS_SELF );
     
     exit( 0 );