armOS  0.1.0
Minimal ARM Operating System for the Raspberry Pi - Documentation generated for Pi 4.
process.c File Reference

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>
Include dependency graph for process.c:

Functions

void process (char *array)
 
void create_processes (size_t proc_num)
 
void kill_processes ()
 

Detailed Description

Implementation of functions for creating and killing processes.

Function Documentation

◆ process()

void process ( char *  array)

Dummy function that simulates a process.

Parameters
arrayA char array pointer.

It just prints the items of its char array.