kernel, libc: Add clock_gettime()
This commit is contained in:
parent
6e9b4491a6
commit
a8a64863c8
@ -1,6 +1,7 @@
|
||||
function(luna_app SOURCE_FILE APP_NAME)
|
||||
add_executable(${APP_NAME} ${SOURCE_FILE})
|
||||
add_dependencies(${APP_NAME} libc)
|
||||
target_include_directories(${APP_NAME} PRIVATE ${LUNA_BASE}/usr/include)
|
||||
install(TARGETS ${APP_NAME} DESTINATION ${LUNA_ROOT}/initrd/bin)
|
||||
endfunction()
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
void bye()
|
||||
{
|
||||
@ -15,6 +16,12 @@ int main()
|
||||
|
||||
console_print(buffer);
|
||||
|
||||
struct timespec ts;
|
||||
clock_gettime(CLOCK_REALTIME, &ts);
|
||||
snprintf(buffer, sizeof(buffer), "Realtime clock: %ld s, %ld ns\n", ts.tv_sec, ts.tv_nsec);
|
||||
|
||||
console_print(buffer);
|
||||
|
||||
for (int i = 0; i < atoi("8"); i++) { console_print("."); }
|
||||
|
||||
console_print("\n");
|
||||
|
@ -18,6 +18,7 @@ set(SOURCES
|
||||
src/sys/Syscall.cpp
|
||||
src/sys/exit.cpp
|
||||
src/sys/console_print.cpp
|
||||
src/sys/clock_gettime.cpp
|
||||
src/InitRD.cpp
|
||||
src/ELF.cpp
|
||||
)
|
||||
@ -78,6 +79,7 @@ target_link_options(moon PRIVATE -lgcc -Wl,--build-id=none -z max-page-size=0x10
|
||||
set_target_properties(moon PROPERTIES CXX_STANDARD 20)
|
||||
|
||||
target_include_directories(moon PRIVATE ${CMAKE_CURRENT_LIST_DIR}/src)
|
||||
target_include_directories(moon PRIVATE ${LUNA_BASE}/usr/include)
|
||||
|
||||
configure_file(src/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/gen/config.h @ONLY)
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "arch/Serial.h"
|
||||
#include "boot/bootboot.h"
|
||||
|
||||
// FIXME: Storing these values as unsigned integers doesn't allow for pre-epoch times.
|
||||
static u64 timer_ticks = 0;
|
||||
static u64 boot_timestamp;
|
||||
|
||||
|
34
kernel/src/sys/clock_gettime.cpp
Normal file
34
kernel/src/sys/clock_gettime.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
#include "arch/Timer.h"
|
||||
#include "memory/MemoryManager.h"
|
||||
#include "sys/Syscall.h"
|
||||
#include <bits/clockid.h>
|
||||
#include <bits/timespec.h>
|
||||
|
||||
Result<u64> sys_clock_gettime(Registers*, SyscallArgs args)
|
||||
{
|
||||
clockid_t id = (clockid_t)args[0];
|
||||
struct timespec* ts = (struct timespec*)args[1];
|
||||
|
||||
switch (id)
|
||||
{
|
||||
case CLOCK_MONOTONIC: {
|
||||
usize ticks = Timer::ticks_ns();
|
||||
struct timespec kernel_ts;
|
||||
kernel_ts.tv_sec = (time_t)(ticks / NS_PER_SECOND);
|
||||
kernel_ts.tv_nsec = (long)(ticks % NS_PER_SECOND);
|
||||
if (!MemoryManager::copy_to_user_typed(ts, &kernel_ts)) return err(EFAULT);
|
||||
break;
|
||||
}
|
||||
case CLOCK_REALTIME: {
|
||||
usize clock = Timer::clock_ns();
|
||||
struct timespec kernel_ts;
|
||||
kernel_ts.tv_sec = (time_t)(clock / NS_PER_SECOND);
|
||||
kernel_ts.tv_nsec = (long)(clock % NS_PER_SECOND);
|
||||
if (!MemoryManager::copy_to_user_typed(ts, &kernel_ts)) return err(EFAULT);
|
||||
break;
|
||||
}
|
||||
default: return err(EINVAL);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
@ -9,6 +9,7 @@ set(SOURCES
|
||||
src/string.cpp
|
||||
src/atexit.cpp
|
||||
src/ctype.cpp
|
||||
src/time.cpp
|
||||
)
|
||||
|
||||
if(${ARCH} STREQUAL "x86_64")
|
||||
@ -30,7 +31,7 @@ target_link_libraries(bare_libc PUBLIC luna)
|
||||
|
||||
target_include_directories(bare_libc PUBLIC include/)
|
||||
|
||||
target_compile_options(bare_libc PRIVATE -Wall -Wextra -Werror -pedantic -nostdlib)
|
||||
target_compile_options(bare_libc PRIVATE -Wall -Wextra -Werror -pedantic -nostdlib -fno-exceptions -fno-rtti)
|
||||
|
||||
target_link_options(bare_libc PRIVATE -nostdlib)
|
||||
|
||||
|
12
libc/include/bits/clockid.h
Normal file
12
libc/include/bits/clockid.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef _BITS_CLOCKID_H
|
||||
#define _BITS_CLOCKID_H
|
||||
|
||||
typedef int clockid_t;
|
||||
|
||||
enum __clockid
|
||||
{
|
||||
CLOCK_REALTIME,
|
||||
CLOCK_MONOTONIC
|
||||
};
|
||||
|
||||
#endif
|
12
libc/include/bits/timespec.h
Normal file
12
libc/include/bits/timespec.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef _BITS_TIMESPEC_H
|
||||
#define _BITS_TIMESPEC_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
struct timespec
|
||||
{
|
||||
time_t tv_sec;
|
||||
long tv_nsec;
|
||||
};
|
||||
|
||||
#endif
|
@ -6,4 +6,6 @@
|
||||
|
||||
typedef int pid_t;
|
||||
|
||||
typedef long time_t;
|
||||
|
||||
#endif
|
||||
|
@ -1,4 +1,19 @@
|
||||
#ifndef _TIME_H
|
||||
#define _TIME_H
|
||||
|
||||
#include <bits/clockid.h>
|
||||
#include <bits/timespec.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
/* Get the current value of a system clock. */
|
||||
int clock_gettime(clockid_t id, struct timespec* ts);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -101,6 +101,7 @@ extern "C"
|
||||
__builtin_unreachable();
|
||||
}
|
||||
|
||||
// FIXME: This is walking a UTF-8 string twice. Once to decode, and another to count code points.
|
||||
size_t mbstowcs(wchar_t* buf, const char* src, size_t max)
|
||||
{
|
||||
if (max == 0) return 0;
|
||||
|
13
libc/src/time.cpp
Normal file
13
libc/src/time.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include <bits/errno-return.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
int clock_gettime(clockid_t id, struct timespec* ts)
|
||||
{
|
||||
long rc = syscall(SYS_clock_gettime, id, ts);
|
||||
__errno_return(rc, int);
|
||||
}
|
||||
}
|
@ -41,7 +41,7 @@ target_compile_options(luna PRIVATE -Wall -Wextra -Werror -Wvla)
|
||||
target_compile_options(luna PRIVATE -Wdisabled-optimization -Wformat=2 -Winit-self)
|
||||
target_compile_options(luna PRIVATE -Wmissing-include-dirs -Wswitch-default -Wcast-qual -Wundef)
|
||||
target_compile_options(luna PRIVATE -Wcast-align -Wwrite-strings -Wlogical-op -Wredundant-decls -Wshadow -Wconversion)
|
||||
target_compile_options(luna PRIVATE -fno-asynchronous-unwind-tables -fno-omit-frame-pointer -std=c++20)
|
||||
target_compile_options(luna PRIVATE -fno-asynchronous-unwind-tables -fno-omit-frame-pointer -std=c++20 -fno-rtti -fno-exceptions)
|
||||
target_include_directories(luna PUBLIC include/)
|
||||
target_include_directories(luna PUBLIC ${LUNA_BASE}/usr/include)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#define enumerate_syscalls(_e) _e(exit) _e(console_print)
|
||||
#define enumerate_syscalls(_e) _e(exit) _e(console_print) _e(clock_gettime)
|
||||
|
||||
enum Syscalls
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user