blktrace: load improvements
[fio.git] / compiler / compiler.h
index 0a08bb12a238703ed252b62c451beac6406f695e..036ba208e861e79225a3e8827f5ff81895c50818 100644 (file)
 #define __must_check
 #endif
 
-#define uninitialized_var(x) x = x
-
-#define __weak __attribute__((weak))
+/*
+ * Mark unused variables passed to ops functions as unused, to silence gcc
+ */
+#define fio_unused     __attribute__((__unused__))
+#define fio_init       __attribute__((constructor))
+#define fio_exit       __attribute__((destructor))
 
 #endif