From: bernie Date: Thu, 7 Aug 2008 10:38:30 +0000 (+0000) Subject: Bump copyright year; Indentation fixes X-Git-Tag: 2.0.0~372 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=5ccdc1569e2680feafe911b1524889394236df1b;p=bertos.git Bump copyright year; Indentation fixes git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1562 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/kern/monitor.c b/bertos/kern/monitor.c index 14fac07b..362bb82d 100644 --- a/bertos/kern/monitor.c +++ b/bertos/kern/monitor.c @@ -26,14 +26,13 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2004 Develer S.r.l. (http://www.develer.com/) + * Copyright 2004, 2008 Develer S.r.l. (http://www.develer.com/) * * --> * * \brief Monitor to check for stack overflows * * \version $Id$ - * * \author Giovanni Bajo */ @@ -67,7 +66,7 @@ void monitor_add(Process *proc, const char *name) } -void monitor_remove(Process* proc) +void monitor_remove(Process *proc) { REMOVE(&proc->monitor.link); } @@ -83,9 +82,9 @@ void monitor_rename(Process *proc, const char *name) size_t monitor_checkStack(cpustack_t *stack_base, size_t stack_size) { - cpustack_t* beg; - cpustack_t* cur; - cpustack_t* end; + cpustack_t *beg; + cpustack_t *cur; + cpustack_t *end; size_t sp_free; beg = stack_base;