Remove unneeded proc_switch.
[bertos.git] / bertos / kern / proc_test.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
30  * -->
31  *
32  *
33  * \brief Test kernel process.
34  *
35  * \version $Id$
36  * \author Daniele Basile <asterix@develer.com>
37  */
38
39 #include <kern/proc.h>
40 #include <kern/irq.h>
41 #include <kern/monitor.h>
42
43 #include <drv/timer.h>
44 #include <cfg/test.h>
45
46 /*
47  * Proc scheduling test subthread 1
48  */
49 static void proc_test1(void)
50 {
51         for (int i = 0; i < 30; ++i)
52         {
53                 kputs("> test1\n");
54                 timer_delay(50);
55         }
56 }
57
58 /*
59  * Proc scheduling test subthread 2
60  */
61 static void proc_test2(void)
62 {
63         for (int i = 0; i < 30; ++i)
64         {
65                 kputs("> test2\n");
66                 timer_delay(75);
67         }
68 }
69
70 static cpu_stack_t proc_test1_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)];
71 static cpu_stack_t proc_test2_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)];
72
73
74 /**
75  * Process scheduling test
76  */
77 int proc_testRun(void)
78 {
79         proc_new(proc_test1, NULL, sizeof(proc_test1_stack), proc_test1_stack);
80         proc_new(proc_test2, NULL, sizeof(proc_test2_stack), proc_test2_stack);
81         kputs("Processes created\n");
82
83         for (int i = 0; i < 30; ++i)
84         {
85                 kputs("> main\n");
86                 timer_delay(93);
87                 monitor_report();
88         }
89         return 0;
90 }
91
92
93 int proc_testSetup(void)
94 {
95         kdbg_init();
96
97         #if CONFIG_KERN_PREEMPT
98                 irq_init();
99         #endif
100
101         timer_init();
102
103         proc_init();
104         return 0;
105 }
106
107 int proc_testTearDown(void)
108 {
109         return 0;
110 }
111
112 TEST_MAIN(proc);