kernel/tasking.i
2024-03-19 09:24:10 -05:00

14 lines
323 B
OpenEdge ABL

ifnd TASKING_I
TASKING_I equ 1
; Initializes tasking, takes the kernel stack frame in a0
xref tasking_init
; Creates a new process
; Pointer to address space in a0
; Start address in a1
xref tasking_new_process
; Yields to the next process
xref tasking_yield
; Exits the current process
xref tasking_exit
endif