From 001f588d99ecdf502e727a66465df4d0ff756c8e Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Tue, 3 Mar 2015 13:21:01 -0500 Subject: hello: remove spurious code. Close #2264 --- hello/both_hello/test.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/hello/both_hello/test.c b/hello/both_hello/test.c index 69dfb1a..0b6af11 100644 --- a/hello/both_hello/test.c +++ b/hello/both_hello/test.c @@ -7,36 +7,20 @@ #include #include -long trace_test(int a, unsigned long b, long long c) -{ - printf ("int a=%i, unsigned long b=%u, long long c=%lli\n", - a, b, c); - return (long) (a + b); -} - -rtems_task hello_init( +rtems_task Init( rtems_task_argument ignored ) { printf( "Classic -- Hello World\n" ); - //trace_test(1, 2, 3); rtems_task_delete( RTEMS_SELF ); } -#define CONFIGURE_INIT_TASK_ENTRY_POINT hello_init - -int main(int argc, char** argv) -{ - hello_init(0); -} - void *POSIX_Init( void *argument ) { printf( "POSIX -- Hello World\n" ); sleep( 1 ); - //trace_test(1, 2, 3); exit( 0 ); } -- cgit v1.2.3