#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: compat_clock.c,v 1.2 2009/01/11 02:46:26 christos Exp $");
#endif
#define __LIBC12_SOURCE__
#include "namespace.h"
#include <sys/types.h>
#include <time.h>
#include <compat/include/time.h>
#include <sys/time.h>
#include <compat/sys/time.h>
__warn_references(clock_gettime,
"warning: reference to compatibility clock_gettime(); include <time.h> to generate correct reference")
__warn_references(clock_settime,
"warning: reference to compatibility clock_settime(); include <time.h> to generate correct reference")
__warn_references(clock_getres,
"warning: reference to compatibility clock_getres(); include <time.h> to generate correct reference")
#ifdef __weak_alias
__weak_alias(clock_settime, _clock_settime)
__weak_alias(__clock_settime, _clock_settime)
__weak_alias(clock_gettime, _clock_gettime)
__weak_alias(clock_getres, _clock_getres)
#endif
int
clock_settime(clockid_t clockid, const struct timespec50 * tim50)
{
struct timespec tim, *timp;
int error;
if (tim50)
timespec50_to_timespec(tim50, timp = &tim);
else
timp = NULL;
error = __clock_settime50(clockid, timp);
if (error)
return error;
return 0;
}
int
clock_gettime(clockid_t clockid, struct timespec50 *tim50)
{
struct timespec tim, *timp = tim50 ? &tim : NULL;
int error = __clock_gettime50(clockid, timp);
if (error)
return error;
if (tim50)
timespec_to_timespec50(timp, tim50);
return 0;
}
int
clock_getres(clockid_t clockid, struct timespec50 *tim50)
{
struct timespec tim, *timp = tim50 ? &tim : NULL;
int error = __clock_getres50(clockid, timp);
if (error)
return error;
if (tim50)
timespec_to_timespec50(timp, tim50);
return 0;
}