aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/sys.h
blob: 16d3c4f4bede90c704b5ac4866e38e5c3a1cc1fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// MIT License, Copyright (c) 2020 Marvin Borner
// Syscall implementation

#ifndef SYS_H
#define SYS_H

enum sys { SYS_LOOP, SYS_MALLOC, SYS_FREE, SYS_EXEC, SYS_EXIT };

int sys0(enum sys num);
int sys1(enum sys num, int d1);
int sys2(enum sys num, int d1, int d2);
int sys3(enum sys num, int d1, int d2, int d3);
int sys4(enum sys num, int d1, int d2, int d3, int d4);
int sys5(enum sys num, int d1, int d2, int d3, int d4, int d5);

/**
 * Wrappers
 */

#define loop() sys0(SYS_LOOP)
#define exec(path) sys1(SYS_EXEC, (int)path)
#define exit()                                                                                     \
	sys0(SYS_EXIT);                                                                            \
	while (1) {                                                                                \
	}

#endif