Hi,
I'm developing a network application on omap L-138 and using ndk 2.
I'd like to design my transmission and receiving task thread to work on interrupts or events coming up from the ndk layers and build my own ISR's.
I've read in NDK User's Guide and NDK Programmers Guide, that Stack Event object responds to the ndk network scheduler about the incoming Rx/Tx events/interrupts, but I didn't find any public API's for custom use. There'are actually 2 API's for file descriptor management, fdSelect(), and fdPoll(), but it is written in the guide that the fdPoll() call is actually more effective that the fdSelect(). and it works in polling mode, not the interrupt.
Is there any effective way to catch up events in the NDK?
Anatoly.