You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
360 B
C
25 lines
360 B
C
#include "kernel.h"
|
|
#include "ecall.h"
|
|
#include "sched.h"
|
|
|
|
void create_processes_from_bin_table();
|
|
|
|
extern ProcessControlBlock processes[PROCESS_COUNT];
|
|
|
|
loaded_binary binary_table[NUM_BINARIES];
|
|
|
|
extern void init()
|
|
{
|
|
init_ecall_table();
|
|
|
|
create_processes_from_bin_table();
|
|
|
|
scheduler_run_next();
|
|
}
|
|
|
|
void create_processes_from_bin_table()
|
|
{
|
|
|
|
}
|
|
|