blob: 8f78516b2b377e632bf29661a00eabae7d52fad9 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include "task.h"
#include "memory.h"
#include "panic.h"
#include "cpu.h"
struct kc_thread *current_task = NULL;
struct kc_thread *first_ready_task = NULL;
struct kc_thread *last_ready_task = NULL;
static int schedule_lock_cnt = 0;
static void lock_scheduler(void);
static void unlock_scheduler(void);
static void set_thread_status(enum kc_thread_status status);
static void idle_task_thread(void);
extern uint64_t *get_tss_rsp0(void);
void task_set_thread(struct kc_thread *task)
{
// wrapper around cpu_set_thread
uint64_t *rsp0 = get_tss_rsp0();
cpu_set_thread(¤t_task->state, &task->state, rsp0);
}
void task_schedule(void)
{
if (first_ready_task)
{
struct kc_thread *task = first_ready_task;
first_ready_task = task->next;
task_set_thread(task);
}
}
static void lock_scheduler(void)
{
__asm__ volatile ("cli;");
schedule_lock_cnt++;
}
static void unlock_scheduler(void)
{
if (1 == schedule_lock_cnt)
{
schedule_lock_cnt--;
__asm__ volatile("sti;");
}
}
static void unblock_thread(struct kc_thread *thread)
{
lock_scheduler();
if (!first_ready_task)
{
task_set_thread(thread);
}
else
{
first_ready_task->next = thread;
first_ready_task = thread;
}
}
static void set_thread_status(enum kc_thread_status status)
{
lock_scheduler();
current_task->status = status;
task_schedule();
unlock_scheduler();
}
static void idle_task_thread(void)
{
}
|