aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd.h
blob: efe25c7ad910a3d670f734c856e18ad282abead6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MELVIX_UNISTD_H
#define MELVIX_UNISTD_H

#include <stdint.h>

u32 exec(char *path);

u32 spawn(char *path);

u32 get_pid();

u32 read(char *path, u32 offset, u32 count, u8 *buf);

u32 write(char *path, u32 offset, u32 count, u8 *buf);

// These should be somewhere else ig
u32 wait(u32 *status);
u32 wait_pid(u32 pid, u32 *status, u32 options);

#endif