Files
kernel/include/sys/thread.h
T
2020-01-30 12:40:58 +02:00

17 lines
285 B
C

#pragma once
struct thread {
// Platform data
struct thread_data {
uintptr_t rsp0; // 0x00
uintptr_t syscall_rsp; // 0x08
uintptr_t rsp0_base;
size_t rsp0_size;
} data;
int pid;
struct thread *prev, *next;
};