1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:47:34 +00:00

Kernel+LibC: Share definitions for time.h and sys/stat.h

This commit is contained in:
Andreas Kling 2021-08-14 15:42:24 +02:00
parent 740140a661
commit 0a78056453
5 changed files with 122 additions and 123 deletions

42
Kernel/API/POSIX/time.h Normal file
View file

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/API/POSIX/sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
#define CLOCKS_PER_SEC 1000
struct timespec {
time_t tv_sec;
long tv_nsec;
};
typedef int clockid_t;
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
#ifdef __cplusplus
}
#endif