Config header file + comment header

This commit is contained in:
2026-02-06 13:59:46 +01:00
parent 7f997f6611
commit 38710653be
33 changed files with 223 additions and 23 deletions

View File

@@ -1,7 +1,14 @@
/*
* @author xamidev <xamidev@riseup.net>
* @brief Process definition
* @license GPL-3.0-only
*/
#ifndef PROCESS_H
#define PROCESS_H
#include <stddef.h>
#include "config.h"
typedef enum
{
@@ -10,9 +17,6 @@ typedef enum
DEAD
} status_t;
#define PROCESS_NAME_MAX 64
#define PROCESS_STACK_SIZE 0x10000 // 64kb
struct process_t
{
size_t pid;