2023-05-29 00:32:54 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-05-30 21:39:19 -07:00
|
|
|
#include "scheduler/process.h"
|
|
|
|
|
2023-05-29 12:44:26 -07:00
|
|
|
// Loads the elf program and returns its entry point.
|
2023-05-30 21:39:19 -07:00
|
|
|
uint64_t LoadElfProgram(Process& dest_proc, uint64_t base, uint64_t length);
|