aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-02-19 16:32:09 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-02-19 16:32:09 +0000
commit4f3674f5f22d41dd58a6ea51d3a5fed89ef1990b (patch)
tree03859edf86e74755fb0c493b0e9e55f525204b77 /os/various/shell.h
parent6865ddcce5e27e124f2f7c114391191ce1f4bd27 (diff)
downloadChibiOS-4f3674f5f22d41dd58a6ea51d3a5fed89ef1990b.tar.gz
ChibiOS-4f3674f5f22d41dd58a6ea51d3a5fed89ef1990b.tar.bz2
ChibiOS-4f3674f5f22d41dd58a6ea51d3a5fed89ef1990b.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8912 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell.h')
-rw-r--r--os/various/shell.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/os/various/shell.h b/os/various/shell.h
index 29d20db5e..9ee73d4dc 100644
--- a/os/various/shell.h
+++ b/os/various/shell.h
@@ -70,12 +70,8 @@ extern event_source_t shell_terminated;
extern "C" {
#endif
void shellInit(void);
+ THD_FUNCTION(shellThread, p);
void shellExit(msg_t msg);
-#if CH_CFG_USE_HEAP && CH_CFG_USE_DYNAMIC
- thread_t *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
-#endif
- thread_t *shellCreateStatic(const ShellConfig *scp, void *wsp,
- size_t size, tprio_t prio);
bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
#ifdef __cplusplus
}