mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:44:58 +00:00
LibC+Kernel: Use an enum for clockid_t values
This commit is contained in:
parent
595ed59eb7
commit
f02d73db4d
2 changed files with 28 additions and 10 deletions
|
@ -602,11 +602,20 @@ typedef enum {
|
|||
|
||||
typedef int clockid_t;
|
||||
|
||||
#define CLOCK_REALTIME 0
|
||||
#define CLOCK_MONOTONIC 1
|
||||
#define CLOCK_MONOTONIC_RAW 4
|
||||
#define CLOCK_REALTIME_COARSE 5
|
||||
#define CLOCK_MONOTONIC_COARSE 6
|
||||
enum {
|
||||
CLOCK_REALTIME,
|
||||
#define CLOCK_REALTIME CLOCK_REALTIME
|
||||
CLOCK_MONOTONIC,
|
||||
#define CLOCK_MONOTONIC CLOCK_MONOTONIC
|
||||
CLOCK_MONOTONIC_RAW,
|
||||
#define CLOCK_MONOTONIC_RAW CLOCK_MONOTONIC_RAW
|
||||
CLOCK_REALTIME_COARSE,
|
||||
#define CLOCK_REALTIME_COARSE CLOCK_REALTIME_COARSE
|
||||
CLOCK_MONOTONIC_COARSE,
|
||||
#define CLOCK_MONOTONIC_COARSE CLOCK_MONOTONIC_COARSE
|
||||
CLOCK_ID_COUNT,
|
||||
};
|
||||
|
||||
#define TIMER_ABSTIME 99
|
||||
|
||||
#define UTSNAME_ENTRY_LEN 65
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue