Kill now unneeded clock definitions
[fio.git] / os / os-hpux.h
1 #ifndef FIO_OS_HPUX_H
2 #define FIO_OS_HPUX_H
3
4 #define FIO_OS  os_hpux
5
6 #include <errno.h>
7 #include <unistd.h>
8 #include <sys/ioctl.h>
9 #include <sys/fcntl.h>
10 #include <sys/fadvise.h>
11 #include <sys/mman.h>
12 #include <sys/mpctl.h>
13 #include <sys/diskio.h>
14 #include <sys/param.h>
15 #include <sys/pstat.h>
16 #include <time.h>
17 #include <aio.h>
18 #include <arm.h>
19
20 #include "../file.h"
21
22 #define FIO_HAVE_ODIRECT
23 #define FIO_USE_GENERIC_RAND
24 #define FIO_USE_GENERIC_INIT_RANDOM_STATE
25 #define FIO_HAVE_PSHARED_MUTEX
26 #define FIO_HAVE_CHARDEV_SIZE
27
28 #define OS_MAP_ANON             MAP_ANONYMOUS
29 #define OS_MSG_DONTWAIT         0
30
31 #define POSIX_MADV_DONTNEED     MADV_DONTNEED
32 #define POSIX_MADV_SEQUENTIAL   MADV_SEQUENTIAL
33 #define POSIX_MADV_RANDOM       MADV_RANDOM
34 #define posix_madvise(ptr, sz, hint)    madvise((ptr), (sz), (hint))
35
36 #ifndef MSG_WAITALL
37 #define MSG_WAITALL     0x40
38 #endif
39
40 #ifdef LITTLE_ENDIAN
41 #define FIO_LITTLE_ENDIAN
42 #else
43 #define FIO_BIG_ENDIAN
44 #endif
45
46 #define FIO_USE_GENERIC_SWAP
47
48 #define FIO_OS_HAVE_AIOCB_TYPEDEF
49 typedef struct aiocb64 os_aiocb_t;
50
51 static inline int blockdev_invalidate_cache(struct fio_file *f)
52 {
53         return EINVAL;
54 }
55
56 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
57 {
58         disk_describe_type_ext_t dext;
59
60         if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
61                 unsigned long long lba;
62
63                 lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
64                 *bytes = lba * dext.lgblksz;
65                 return 0;
66         }
67
68         *bytes = 0;
69         return errno;
70 }
71
72 static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
73 {
74         return blockdev_size(f, bytes);
75 }
76
77 static inline unsigned long long os_phys_mem(void)
78 {
79         unsigned long long ret;
80         struct pst_static pst;
81         union pstun pu;
82
83         pu.pst_static = &pst;
84         if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
85                 return 0;
86
87         ret = pst.physical_memory;
88         ret *= pst.page_size;
89         return ret;
90 }
91
92 #define FIO_HAVE_CPU_ONLINE_SYSCONF
93
94 static inline unsigned int cpus_online(void)
95 {
96         return mpctl(MPC_GETNUMSPUS, 0, NULL);
97 }
98
99 #endif