mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 13:58:21 +01:00
4ab3fa3b5a
* Added support for timespec stat times. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31012 a95241bf-73f2-0310-859d-f6bbb57e9c96
74 lines
931 B
C++
74 lines
931 B
C++
/*
|
|
* Copyright 2009, Axel Dörfler, axeld@pinc-software.de.
|
|
* Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
|
|
*
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
#include "compatibility.h"
|
|
|
|
#include "fssh_os.h"
|
|
#include "fssh_time.h"
|
|
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
// #pragma mark - OS.h
|
|
|
|
#if 0
|
|
|
|
void
|
|
fssh_set_real_time_clock(uint32_t secs_since_jan1_1970)
|
|
{
|
|
}
|
|
|
|
|
|
fssh_status_t
|
|
fssh_set_timezone(char *timezone)
|
|
{
|
|
}
|
|
|
|
#endif // 0
|
|
|
|
uint32_t
|
|
fssh_real_time_clock(void)
|
|
{
|
|
timeval tv;
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return tv.tv_sec;
|
|
}
|
|
|
|
|
|
fssh_bigtime_t
|
|
fssh_real_time_clock_usecs(void)
|
|
{
|
|
timeval tv;
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return tv.tv_sec * 1000000LL + tv.tv_usec;
|
|
}
|
|
|
|
|
|
fssh_bigtime_t
|
|
fssh_system_time(void)
|
|
{
|
|
return system_time();
|
|
}
|
|
|
|
|
|
// #pragma mark - time.h
|
|
|
|
|
|
fssh_time_t
|
|
fssh_time(fssh_time_t *timer)
|
|
{
|
|
time_t result = time(NULL);
|
|
if (timer)
|
|
*timer = result;
|
|
return result;
|
|
}
|