]> gitweb.factorcode.org Git - factor.git/blob - vm/os-unix.hpp
VM: SNPRINTF macro is not used
[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
28 #define FTELL ftello
29 #define FSEEK fseeko
30
31 #define OPEN_READ(path) fopen(path, "rb")
32 #define OPEN_WRITE(path) fopen(path, "wb")
33
34 #ifdef _GNU_SOURCE
35 extern "C" {
36   extern int __xpg_strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW __nonnull ((2));
37 }
38 #define strerror_r __xpg_strerror_r
39 #endif
40
41 #define THREADSAFE_STRERROR(errnum, buf, buflen) strerror_r(errnum, buf, buflen)
42
43 #define print_native_string(string) print_string(string)
44
45 typedef pthread_t THREADHANDLE;
46
47 THREADHANDLE start_thread(void* (*start_routine)(void*), void* args);
48 inline static THREADHANDLE thread_id() { return pthread_self(); }
49
50 uint64_t nano_count();
51 void sleep_nanos(uint64_t nsec);
52
53 void check_ENOMEM(const char* msg);
54
55 static inline void breakpoint() { __builtin_trap(); }
56
57 }