Original Post
I was inspired to try my hand at asynchronous file IO, but I'm having some problems. I can't even include the header without getting compiler errors. For example, this code gives me all sorts of errors from down inside the headers that aio.h includes:
#include <linux/aio.h>
int main()
{
return 0;
} Has anyone done this before? What am I doing wrong?