I need to find out if a binary is using epoll or select for socket handling on Linux. The binary is not stripped, but I can't run it in my linux box so no strace .
closed as off topic by sputnick, Kjuly, Ryan Bigg, ACB, mgibsonbr Nov 8 '12 at 5:25
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You may find that your application is linked against both. In that case it may be making a run-time decision on which one to call, and you won't be able to easily tell which one it would actually use if you ran it. Depending on how the binary was built, you may have to run If the program uses shared libraries, the actual call to If the binary was built for a different platform than you're currently running on, then |
|||
|
|