mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-09 14:32:48 +00:00
c745aa4454
Fixes #1241.
43 lines
807 B
C++
43 lines
807 B
C++
/*
|
|
* \brief C-library back end
|
|
* \author Christian Prochaska
|
|
* \date 2010-05-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2010-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#include <base/printf.h>
|
|
#include <os/timed_semaphore.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
namespace Libc {
|
|
extern time_t read_rtc();
|
|
}
|
|
|
|
extern "C" __attribute__((weak))
|
|
int clock_gettime(clockid_t clk_id, struct timespec *tp)
|
|
{
|
|
static bool read_rtc = false;
|
|
static time_t rtc = 0;
|
|
|
|
if (!read_rtc) {
|
|
rtc = Libc::read_rtc();
|
|
read_rtc = true;
|
|
}
|
|
|
|
Genode::Alarm::Time time = Genode::Timeout_thread::alarm_timer()->time();
|
|
|
|
if (tp) {
|
|
tp->tv_sec = rtc + time / 1000;
|
|
tp->tv_nsec = (time % 1000) * (1000 * 1000);
|
|
}
|
|
|
|
return 0;
|
|
}
|