We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since already building with MinGW and pthreads, perhaps os.Worker could be supported?
os.Worker
Adding -DUSE_WORKER and a macro for pipe like #define pipe(fds) _pipe(fds, 4096, _O_BINARY) seems to do it.
-DUSE_WORKER
pipe
#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
The text was updated successfully, but these errors were encountered:
Since already building with MinGW and pthreads, perhaps os.Worker could be supported? Adding -DUSE_WORKER and a macro for pipe like #define pipe(fds) _pipe(fds, 4096, _O_BINARY) seems to do it.
I tried to do what you advised. While it compiles successfully, the worker just doesn't work (no errors, it just doesn't work)
Sorry, something went wrong.
No branches or pull requests
Since already building with MinGW and pthreads, perhaps
os.Worker
could be supported?Adding
-DUSE_WORKER
and a macro forpipe
like#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
seems to do it.The text was updated successfully, but these errors were encountered: