Merge branch 'linux-libspl' into refs/top-bases/linux-zfs-branch
This commit is contained in:
commit
f9424a347f
|
@ -11,6 +11,9 @@ LIBRARY := libspl
|
||||||
HOSTCFLAGS += @HOSTCFLAGS@
|
HOSTCFLAGS += @HOSTCFLAGS@
|
||||||
HOSTCFLAGS += -I@LIBDIR@/libspl/include
|
HOSTCFLAGS += -I@LIBDIR@/libspl/include
|
||||||
|
|
||||||
|
HOSTLDFLAGS += -pthread
|
||||||
|
HOSTLDFLAGS += -lrt
|
||||||
|
|
||||||
hostprogs-y := zu
|
hostprogs-y := zu
|
||||||
always := $(hostprogs-y)
|
always := $(hostprogs-y)
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
#pragma ident "%Z%%M% %I% %E% SMI"
|
#pragma ident "%Z%%M% %I% %E% SMI"
|
||||||
|
|
||||||
|
#include <time.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -38,7 +39,7 @@ gethrtime(void)
|
||||||
|
|
||||||
rc = clock_gettime(CLOCK_MONOTONIC, &ts);
|
rc = clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
fprintf(stderr, "Error: clock_gettime() = %d\n", rc)
|
fprintf(stderr, "Error: clock_gettime() = %d\n", rc);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue