projects
/
fio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Finalize (?) byte swap/endian stuff
[fio.git]
/
os
/
os-netbsd.h
diff --git
a/os/os-netbsd.h
b/os/os-netbsd.h
index e03866dfc86c131ea6fa9cf32f4786b45042baf8..5d8258bd9460e2e6edaf14f441b291b1acb91fbb 100644
(file)
--- a/
os/os-netbsd.h
+++ b/
os/os-netbsd.h
@@
-4,6
+4,7
@@
#include <errno.h>
#include <sys/param.h>
#include <sys/thr.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/thr.h>
+#include <sys/endian.h>
/* XXX hack to avoid confilcts between rbtree.h and <sys/rb.h> */
#define rb_node _rb_node
#include <sys/sysctl.h>
/* XXX hack to avoid confilcts between rbtree.h and <sys/rb.h> */
#define rb_node _rb_node
#include <sys/sysctl.h>
@@
-30,6
+31,16
@@
#define PTHREAD_STACK_MIN 4096
#endif
#define PTHREAD_STACK_MIN 4096
#endif
+#if BYTE_ORDER == LITTLE_ENDIAN
+#define FIO_LITTLE_ENDIAN
+#else
+#define FIO_BIG_ENDIAN
+#endif
+
+#define fio_swap16(x) bswap16(x)
+#define fio_swap32(x) bswap32(x)
+#define fio_swap64(x) bswap64(x)
+
typedef off_t off64_t;
static inline int blockdev_invalidate_cache(struct fio_file *f)
typedef off_t off64_t;
static inline int blockdev_invalidate_cache(struct fio_file *f)