[examples-v2 commit] hello: remove spurious code. Close #2264

Gedare Bloom gedare at rtems.org
Tue Mar 3 18:21:55 UTC 2015


Module:    examples-v2
Branch:    master
Commit:    001f588d99ecdf502e727a66465df4d0ff756c8e
Changeset: http://git.rtems.org/examples-v2/commit/?id=001f588d99ecdf502e727a66465df4d0ff756c8e

Author:    Gedare Bloom <gedare at rtems.org>
Date:      Tue Mar  3 13:21:01 2015 -0500

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 <stdlib.h>
 #include <unistd.h>
 
-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 );
 }
 




More information about the vc mailing list