From ec54a8a7eb52cb9972482e8a70e1db9659ea14bb Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 22 Aug 2013 13:11:51 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6199 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/shell.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'os/various') 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 -- cgit v1.2.3