5 #include <ctu_os_api.h>
39 #define OS_ACCESS(ID, STR, BIT) ID = (BIT),
48 #define OS_PROTECT(ID, STR, BIT) ID = (BIT),
57 #define OS_DIRENT(ID, STR) ID,
CT_NODISCARD STA_WRITES(size) void *dst
CT_OS_API char * os_cwd_string(arena_t *arena)
get the current working directory
CT_NODISCARD CT_PUREFN CT_OS_API os_dirent_t os_inode_type(const os_inode_t *node)
get the type of an inode
void(* os_symbol_t)(void)
function pointer used for shared library symbols rather than void* because casting a function pointer...
CT_NODISCARD STA_RET_STRING CT_OS_API char * os_error_string(os_error_t error, arena_t *arena)
convert an os error code to a string
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_dirent_string(os_dirent_t type)
get the string representation of a directory entry type
CT_NODISCARD STA_RET_STRING CT_PUREFN CT_OS_API const char * os_inode_name(const os_inode_t *node)
get the name of an inode
int os_exitcode_t
program exit code
CT_NODISCARD CT_OS_API size_t os_error_get_string(os_error_t error, STA_WRITES(size) char *buffer, size_t size)
convert an os error code to a string writes to a buffer rather than allocating. if size is 0,...
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_protect_string(os_protect_t protect)
get the string representation of a file mapping memory protection
CT_NODISCARD CT_OS_API size_t os_cwd_get_string(STA_WRITES(size) char *buffer, size_t size)
get the current working directory
os_dirent_t
directory entry type
os_protect_t
file mapping memory protection
CT_OS_API os_error_t os_getcwd(OUT_NOTNULL text_t *text, arena_t *arena)
get the current working directory
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_access_string(os_access_t access)
get the string representation of a file access mode
CT_NORETURN CT_OS_API os_exit(os_exitcode_t code)
exit the program
CT_NORETURN CT_OS_API os_abort(void)
abort the program
typedef STA_SUCCESS_TYPE(return==eOsSuccess) size_t os_error_t
error code
os_access_t
file access mode
CT_OS_API void os_init(void)
initialize the os api
#define CT_PUREFN
mark a function as pure, always returns the same value for the same arguments
#define CT_NODISCARD
mark a function as returning a value that must be used
#define IN_NOTNULL
annotate a parameter as not being null
#define STA_RET_STRING
annotate the return value as a null terminated string
#define RET_INSPECT
annotate the return value as needing to be inspected this is the same as CT_NODISCARD but implies tha...
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
#define CT_ENUM_FLAGS(X, T)
CT_OS_API os_thread_id_t os_get_thread_id(void)
get the current thread id
CT_NORETURN CT_OS_API os_thread_exit(os_status_t status)
exit the current thread of execution
unsigned os_status_t
thread return code
size_t os_thread_id_t
thread id