mirror_zfs/modules/spl/spl-time.c

12 lines
181 B
C
Raw Normal View History

#include <sys/sysmacros.h>
#include <sys/time.h>
#include "config.h"
void
__gethrestime(timestruc_t *ts)
{
getnstimeofday((struct timespec *)ts);
}
EXPORT_SYMBOL(__gethrestime);