diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-22 13:11:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-22 13:11:51 +0000 |
commit | ec54a8a7eb52cb9972482e8a70e1db9659ea14bb (patch) | |
tree | bdb7e7219f6e9fe2147148a93ccd47cc7ed28617 /os/various | |
parent | 2a30d8215dae3196c6a8f23d899cf8d942b8cd87 (diff) | |
download | ChibiOS-ec54a8a7eb52cb9972482e8a70e1db9659ea14bb.tar.gz ChibiOS-ec54a8a7eb52cb9972482e8a70e1db9659ea14bb.tar.bz2 ChibiOS-ec54a8a7eb52cb9972482e8a70e1db9659ea14bb.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6199 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various')
-rw-r--r-- | os/various/shell.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/various/shell.h b/os/various/shell.h index 384a6a200..7d576f36d 100644 --- a/os/various/shell.h +++ b/os/various/shell.h @@ -63,17 +63,17 @@ typedef struct { } ShellConfig;
#if !defined(__DOXYGEN__)
-extern EventSource shell_terminated;
+extern event_source_t shell_terminated;
#endif
#ifdef __cplusplus
extern "C" {
#endif
void shellInit(void);
- Thread *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
- Thread *shellCreateStatic(const ShellConfig *scp, void *wsp,
- size_t size, tprio_t prio);
- bool_t shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
+ thread_t *shellCreate(const ShellConfig *scp, size_t size, tprio_t prio);
+ thread_t *shellCreateStatic(const ShellConfig *scp, void *wsp,
+ size_t size, tprio_t prio);
+ bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
#ifdef __cplusplus
}
#endif
|