You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
16 lines
364 B
extern "C" {
|
|
// Kill atomics in fio headers
|
|
#define _STDATOMIC_H
|
|
#include "fio/arch/arch.h"
|
|
|
|
#undef atomic_load_acquire
|
|
#undef atomic_store_release
|
|
#define atomic_load_acquire(p) *(p)
|
|
#define atomic_store_release(p, v) (*(p)) = (v)
|
|
|
|
#define CONFIG_HAVE_GETTID
|
|
#define CONFIG_SYNC_FILE_RANGE
|
|
#define CONFIG_PWRITEV2
|
|
#include "fio/fio.h"
|
|
#include "fio/optgroup.h"
|
|
}
|
|
|