-
Notifications
You must be signed in to change notification settings - Fork 1
/
raw_idle.c
51 lines (34 loc) · 1.49 KB
/
raw_idle.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
raw os - Copyright (C) Lingjun Chen(jorya_txj).
This file is part of raw os.
raw os is free software; you can redistribute it it under the terms of the
GNU General Public License as published by the Free Software Foundation;
either version 3 of the License, or (at your option) any later version.
raw os is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. if not, write email to jorya.txj@gmail.com
---
A special exception to the LGPL can be applied should you wish to distribute
a combined work that includes raw os, without being obliged to provide
the source code for any proprietary components. See the file exception.txt
for full details of how and when the exception can be applied.
*/
/* 2012-9 Created by jorya_txj
* xxxxxx please added here
*/
#include <raw_api.h>
RAW_VOID raw_idle_task (void *p_arg)
{
RAW_SR_ALLOC();
p_arg = p_arg; /* Make compiler happy ^_^ */
while (1) {
USER_CPU_INT_DISABLE();
raw_idle_count++;
USER_CPU_INT_ENABLE();
#if (CONFIG_RAW_USER_HOOK > 0)
raw_idle_coroutine_hook();
#endif
}
}