Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VSs > VSs__Test_App__LangDev
changeset 1:ea293c5b31f6
fix includes
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Fri, 17 Aug 2012 11:43:25 +0200 |
| parents | 7a85919442f2 |
| children | 022f45f9703c |
| files | VSs__Test_App/EntryPoint.c VSs__Test_App/SeedVP.c VSs__Test_App/Task.c |
| diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/VSs__Test_App/EntryPoint.c Wed Aug 01 01:08:02 2012 -0700 1.2 +++ b/VSs__Test_App/EntryPoint.c Fri Aug 17 11:43:25 2012 +0200 1.3 @@ -8,7 +8,7 @@ 1.4 1.5 #include <math.h> 1.6 1.7 -#include "VSs__Hello_World.h" 1.8 +#include "VSs__Test_App.h" 1.9 1.10 1.11
2.1 --- a/VSs__Test_App/SeedVP.c Wed Aug 01 01:08:02 2012 -0700 2.2 +++ b/VSs__Test_App/SeedVP.c Fri Aug 17 11:43:25 2012 +0200 2.3 @@ -9,7 +9,7 @@ 2.4 2.5 #include <math.h> 2.6 #include <string.h> 2.7 -#include "VSs__Hello_World.h" 2.8 +#include "VSs__Test_App.h" 2.9 2.10 /*Global vars are part of the hello world task type.. ctld args MUST always 2.11 * be the first ones in the array*/ 2.12 @@ -43,6 +43,6 @@ 2.13 taskID[1] = i; 2.14 VSs__submit_task_with_ID( testAppTaskType, &args, taskID, animSlv ); 2.15 } 2.16 - VSs__dissipate_slave( animSlv ); 2.17 + VSs__end_thread( animSlv ); 2.18 } 2.19
3.1 --- a/VSs__Test_App/Task.c Wed Aug 01 01:08:02 2012 -0700 3.2 +++ b/VSs__Test_App/Task.c Fri Aug 17 11:43:25 2012 +0200 3.3 @@ -9,7 +9,7 @@ 3.4 3.5 #include <math.h> 3.6 #include <string.h> 3.7 -#include "VSs__Hello_World.h" 3.8 +#include "VSs__Test_App.h" 3.9 3.10 void test_app_task( void *_args, SlaveVP *animSlv ) 3.11 { TestAppArgs *args;
