Can I create a native thread on Windows running MRI, using the CreateThread API call and the win32-api, windows-api and windows-pr gems?
If so, can someone give me an example? Would that thread work properly?
Can I create a native thread on Windows running MRI, using the CreateThread API
Share
Seems it’s not possible.
I ended up using eventmachine to handle multiple I/O events on the same thread.