# HG changeset patch # User Sean Halle # Date 1345248945 25200 # Node ID 6462b7a00386362ae7c79e59391c43f598238302 # Parent 7a85919442f2b301586870da6130682d069ec34f Has Updates to the app, VMS, and VSs.. version with wait on task and on thread but has bugs still in VSs diff -r 7a85919442f2 -r 6462b7a00386 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 17:15:45 2012 -0700 @@ -8,7 +8,7 @@ #include -#include "VSs__Hello_World.h" +#include "VSs__Test_App.h" diff -r 7a85919442f2 -r 6462b7a00386 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 17:15:45 2012 -0700 @@ -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 6462b7a00386 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 17:15:45 2012 -0700 @@ -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;