/[osn-commons]/trunk/plibc/lib/unistd.h
ViewVC logotype

Annotation of /trunk/plibc/lib/unistd.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 51 - (hide annotations)
Fri Aug 16 18:34:43 2024 UTC (7 months, 2 weeks ago) by rakinar2
File MIME type: text/x-c
File size: 677 byte(s)
feat: add basic utilities and more system calls

1 rakinar2 51 #ifndef PLIBC_UNISTD_H
2     #define PLIBC_UNISTD_H
3    
4     #include "stddef.h"
5     #include <stdint.h>
6     #include <sys/types.h>
7    
8     #define STDIN_FILENO 0
9     #define STDOUT_FILENO 1
10     #define STDERR_FILENO 2
11    
12     #define O_RDONLY 0x0
13     #define O_WRONLY 0x1
14     #define O_RDWR 0x2
15     #define O_CREAT 0x40
16     #define O_TRUNC 0x200
17     #define O_APPEND 0x400
18    
19     int write (int fd, const void *buf, size_t count);
20     int open (const char *pathname, int flags);
21     int close (int fd);
22    
23     void *sbrk (intptr_t increment);
24     void *brk (void);
25     void __attribute__ ((noreturn)) exit (int status);
26     void *mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset);
27     void *sysinfo (void *buffer);
28     int kill (pid_t pid, int sig);
29    
30     #endif

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26