28 lines
603 B
C
28 lines
603 B
C
#ifndef _LUNA_H
|
|
#define _LUNA_H
|
|
|
|
#include <bits/getprocid.h>
|
|
#include <bits/macros.h>
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* Returns a numeric identifier associated with the current process, depending on field. */
|
|
long getprocid(int field);
|
|
|
|
/* Sleeps for ms milliseconds. */
|
|
unsigned int msleep(unsigned int ms);
|
|
|
|
/* Prints a message to standard error and aborts the program. */
|
|
__lc_noreturn void __luna_abort(const char* message);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#define NOT_IMPLEMENTED(message) __luna_abort("not implemented: " message "\n")
|
|
|
|
#endif |