|
Re: O_DIRECT giving error while compiling the source code
|
03/22/2019 9:33 AM
post119600
|
Re: O_DIRECT giving error while compiling the source code
I think O_DIRECT is not supported under QNX. Since it is a performance optimization, you could simply do something like
#ifnef O_DIRECT
#define O_DIRECT 0
#endif
Regards,
Albrecht
|
|
|