diff options
Diffstat (limited to 'ports/MSP430/chcore.c')
-rw-r--r-- | ports/MSP430/chcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/MSP430/chcore.c b/ports/MSP430/chcore.c index b2ff849d6..dc340f9c9 100644 --- a/ports/MSP430/chcore.c +++ b/ports/MSP430/chcore.c @@ -25,7 +25,7 @@ * The priority is internally set to the minimum system value so that this
* thread is executed only if there are no other ready threads in the system.
*/
-void _IdleThread(void *p) {
+void _idle(void *p) {
while (TRUE)
;
|