Ensure that we honor aio_read/write() returning EAGAIN
[fio.git] / compiler / compiler.h
CommitLineData
4fee8096
JA
1#ifndef FIO_COMPILER_H
2#define FIO_COMPILER_H
3
4#if __GNUC__ >= 4
5#include "compiler-gcc4.h"
73e07acd 6#elif __GNUC__ == 3
4fee8096
JA
7#include "compiler-gcc3.h"
8#else
9#error Compiler too old, need gcc at least gcc 3.x
10#endif
11
993cca04
JA
12#ifndef __must_check
13#define __must_check
14#endif
15
f3f552b9
JA
16#define uninitialized_var(x) x = x
17
3b2e1464 18#ifndef __weak
9b836561 19#ifndef __CYGWIN__
ed80ddf6 20#define __weak __attribute__((weak))
9b836561
BC
21#else
22#define __weak
23#endif
3b2e1464 24#endif
ed80ddf6 25
4fee8096 26#endif