AIO is not supported on this machine!

#1
After upgrade to 1.6.5, I got "AIO is not supported on this machine!" in the error.log.
after check the difference between 1.5.10 and 1.6.5, it's issue of 1.6.5, not sure it's done on purpose.

for examples, source http/httpsession.h,

in 1.5.10,
C++:
#include <edio/aioeventhandler.h>
in 1.6.5
C++:
#include <edio/eventhandler.h>
LS_AIO_USE_AIO is defined in aioeventhandler.h, all code depends on that var is not compiled.
C++:
void HttpServer::enableAioLogging()
{
#if defined(LS_AIO_USE_AIO)
#endif // defined(LS_AIO_USE_AIO)
    LS_NOTICE("AIO is not supported on this machine!");
}
 
Top