# HG changeset patch # User Nina Engelhardt # Date 1345196605 -7200 # Node ID ea293c5b31f63bd529bc0f2b15a71d97c0721500 # Parent 7a85919442f2b301586870da6130682d069ec34f fix includes diff -r 7a85919442f2 -r ea293c5b31f6 VSs__Test_App/EntryPoint.c --- a/VSs__Test_App/EntryPoint.c Wed Aug 01 01:08:02 2012 -0700 +++ b/VSs__Test_App/EntryPoint.c Fri Aug 17 11:43:25 2012 +0200 @@ -8,7 +8,7 @@ #include -#include "VSs__Hello_World.h" +#include "VSs__Test_App.h" diff -r 7a85919442f2 -r ea293c5b31f6 VSs__Test_App/SeedVP.c --- a/VSs__Test_App/SeedVP.c Wed Aug 01 01:08:02 2012 -0700 +++ b/VSs__Test_App/SeedVP.c Fri Aug 17 11:43:25 2012 +0200 @@ -9,7 +9,7 @@ #include #include -#include "VSs__Hello_World.h" +#include "VSs__Test_App.h" /*Global vars are part of the hello world task type.. ctld args MUST always * be the first ones in the array*/ @@ -43,6 +43,6 @@ taskID[1] = i; VSs__submit_task_with_ID( testAppTaskType, &args, taskID, animSlv ); } - VSs__dissipate_slave( animSlv ); + VSs__end_thread( animSlv ); } diff -r 7a85919442f2 -r ea293c5b31f6 VSs__Test_App/Task.c --- a/VSs__Test_App/Task.c Wed Aug 01 01:08:02 2012 -0700 +++ b/VSs__Test_App/Task.c Fri Aug 17 11:43:25 2012 +0200 @@ -9,7 +9,7 @@ #include #include -#include "VSs__Hello_World.h" +#include "VSs__Test_App.h" void test_app_task( void *_args, SlaveVP *animSlv ) { TestAppArgs *args;