Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
Diff: src/ConfigurationHandler/ConfigurationHandler.h
- Revision:
- 2:da28f21b72a1
- Parent:
- 1:057d8fc6cb2f
- Child:
- 3:8ea4db957749
--- a/src/ConfigurationHandler/ConfigurationHandler.h Thu Sep 01 19:42:11 2016 +0000 +++ b/src/ConfigurationHandler/ConfigurationHandler.h Thu Sep 01 20:32:42 2016 +0000 @@ -7,6 +7,8 @@ #ifndef CONFIGURATION_HANDLER_H #define CONFIGURATION_HANDLER_H +#include "rtos.h" // for Thread + void ConfigurationHandler(void const *args); void ConfigurationHandler_DisplayThreads(void); @@ -21,11 +23,9 @@ unsigned int reserved; // for future use } Args_t; -#if 0 typedef struct Tcb_tag { - Thread *t; - Args_t *args; + Thread *thread; // printer to control thread + Args_t *args; // pointer to control thread args } Tcb_t; -#endif #endif