]> gitweb.factorcode.org Git - factor.git/blob - vm/os-unix.hpp
VM: Refactor os-* to Factor style
[factor.git] / vm / os-unix.hpp
1 #include <unistd.h>
2 #include <sys/param.h>
3 #include <dirent.h>
4 #include <sys/mman.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <unistd.h>
8 #include <sys/time.h>
9 #include <dlfcn.h>
10 #include <signal.h>
11 #include <pthread.h>
12 #include <sched.h>
13
14 #include "atomic-gcc.hpp"
15
16 namespace factor {
17
18 typedef char vm_char;
19 typedef char symbol_char;
20
21 #define STRING_LITERAL(string) string
22
23 #define SSCANF sscanf
24 #define STRCMP strcmp
25 #define STRNCMP strncmp
26 #define STRDUP strdup
27 #define SNPRINTF snprintf
28
29 #define FTELL ftello
30 #define FSEEK fseeko
31
32 #define OPEN_READ(path) fopen(path, "rb")
33 #define OPEN_WRITE(path) fopen(path, "wb")
34
35 #define print_native_string(string) print_string(string)
36
37 typedef pthread_t THREADHANDLE;
38
39 THREADHANDLE start_thread(void* (*start_routine)(void*), void* args);
40 inline static THREADHANDLE thread_id() { return pthread_self(); }
41
42 u64 nano_count();
43 void sleep_nanos(u64 nsec);
44
45 void move_file(const vm_char* path1, const vm_char* path2);
46
47 static inline void breakpoint() { __builtin_trap(); }
48
49 }