X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=kern%2Fproc_p.h;h=4123e138240fbbbe6354c03ad6bcc18d9c4bf978;hb=20dd688cb9651494cfa2fe4e3026930c23f07dfe;hp=79e97b9230cbe16bd7b9cbbfafc38622cb1e1f34;hpb=ea4ef51b306fde6480c03f72e81c4b31d51660f6;p=bertos.git diff --git a/kern/proc_p.h b/kern/proc_p.h index 79e97b92..4123e138 100755 --- a/kern/proc_p.h +++ b/kern/proc_p.h @@ -1,8 +1,8 @@ /*! * \file * * @@ -15,6 +15,9 @@ /* * $Log$ + * Revision 1.6 2004/08/24 16:05:15 bernie + * Add missing headers; Reformat. + * * Revision 1.5 2004/08/14 19:37:57 rasky * Merge da SC: macros.h, pool.h, BIT_CHANGE, nome dei processi, etc. * @@ -44,11 +47,11 @@ * Add multithreading kernel * */ - #ifndef KERN_PROC_P_H #define KERN_PROC_P_H #include "compiler.h" +#include "cpu.h" /* for cpu_stack_t */ #include "config.h" #include "config_kern.h" #include @@ -73,10 +76,10 @@ typedef struct Process #if CONFIG_KERN_MONITOR struct ProcMonitor { - Node link; - const char* name; - cpustack_t* stack_base; - size_t stack_size; + Node link; + const char *name; + cpustack_t *stack_base; + size_t stack_size; } monitor; #endif