Implementation of functions for creating and killing processes. More...
#include <stdint.h>
#include <stddef.h>
#include <kernel/printk.h>
#include <kernel/mmio.h>
#include <kernel/timer.h>
#include <kernel/fork.h>
#include <kernel/scheduler.h>
#include <kernel/uart.h>
#include <kernel/mm.h>
#include <common/string.h>
#include <common/stdlib.h>
Functions | |
void | process (char *array) |
void | create_processes (size_t proc_num) |
void | kill_processes () |
Implementation of functions for creating and killing processes.
void process | ( | char * | array | ) |
Dummy function that simulates a process.
array | A char array pointer. |
It just prints the items of its char array.