Move test code to timer_test.c; Add OS_HOSTED support.
[bertos.git] / kern / proc.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2001,2004 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
6  * This file is part of DevLib - See README.devlib for information.
7  * -->
8  *
9  * \brief Process scheduler (public interface).
10  *
11  * \version $Id$
12  *
13  * \author Bernardo Innocenti <bernie@develer.com>
14  */
15
16 /*#*
17  *#* $Log$
18  *#* Revision 1.10  2005/11/04 16:20:02  bernie
19  *#* Fix reference to README.devlib in header.
20  *#*
21  *#* Revision 1.9  2005/04/11 19:10:28  bernie
22  *#* Include top-level headers from cfg/ subdir.
23  *#*
24  *#* Revision 1.8  2004/11/16 22:37:14  bernie
25  *#* Replace IPTR with iptr_t.
26  *#*
27  *#* Revision 1.7  2004/10/19 08:54:55  bernie
28  *#* Define forbid_cnt.
29  *#*
30  *#* Revision 1.6  2004/10/03 20:44:18  bernie
31  *#* Remove stale declarations (moved to monitor.h).
32  *#*
33  *#* Revision 1.2  2004/06/03 11:27:09  bernie
34  *#* Add dual-license information.
35  *#*
36  *#* Revision 1.1  2004/05/23 17:27:00  bernie
37  *#* Import kern/ subdirectory.
38  *#*
39  *#*/
40
41 #ifndef KERN_PROC_H
42 #define KERN_PROC_H
43
44 #include <cfg/compiler.h>
45 #include <cfg/cpu.h>
46 #include <cfg/config_kern.h>
47
48 /* Fwd decl */
49 struct Process;
50
51 /* Task scheduling services */
52 void proc_init(void);
53 struct Process *proc_new_with_name(const char* name, void (*entry)(void), iptr_t data, size_t stacksize, cpustack_t *stack);
54
55 #if !CONFIG_KERN_MONITOR
56         #define proc_new(entry,data,size,stack) proc_new_with_name(NULL,(entry),(data),(size),(stack))
57 #else
58         #define proc_new(entry,data,size,stack) proc_new_with_name(#entry,(entry),(data),(size),(stack))
59 #endif
60
61 void proc_exit(void);
62 void proc_switch(void);
63 void proc_test(void);
64 struct Process* proc_current(void);
65 iptr_t proc_current_user_data(void);
66 void proc_rename(struct Process* proc, const char* name);
67
68 #if CONFIG_KERN_PREEMPTIVE
69         void proc_forbid(void);
70         void proc_permit(void);
71 #else
72         INLINE void proc_forbid(void) { /* nop */ }
73         INLINE void proc_permit(void) { /* nop */ }
74 #endif
75
76 /*!
77  * Execute a block of \a CODE atomically with respect to task scheduling.
78  */
79 #define PROC_ATOMIC(CODE) \
80         do { \
81                 proc_forbid(); \
82                 CODE; \
83                 proc_permit(); \
84         } while(0)
85
86 #endif /* KERN_PROC_H */
87