-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support QNX OS platform #1788
Support QNX OS platform #1788
Conversation
Minor comments posted, but this looks much better than the earlier mess :-) |
Thanks for your review. i updated the changes |
oslib/inet_aton.h
Outdated
@@ -2,6 +2,9 @@ | |||
#define FIO_INET_ATON_LIB_H | |||
|
|||
#include <arpa/inet.h> | |||
#if defined(__QNX__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the QNX check needed here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you are right, No, it is not need.
Thanks, added a few more comments on items I missed the first time around. |
Compile command: QNX SDP7.1 example ./configure --cc=aarch64-unknown-nto-qnx7.1.0-gcc --disable-shm make Function is verified by UFS device read and write test. Signed-off-by: Huang weiliang <weller.huang@us.bosch.com>
Thanks for your patience :) |
Merged, and added a fix for a bug on top. |
Thanks for merging. |
Add support QNX OS platform
To mainline those changes for better maintenance.
Compile command: QNX SDP7.1 example
./configure --cc=aarch64-unknown-nto-qnx7.1.0-gcc --disable-shm; make
Basic file read and write test with ioengine=sync is verified.
Signed-off-by: Huang weiliang weller.huang@us.bosch.com