-
Notifications
You must be signed in to change notification settings - Fork 65
dlopen utility #2337
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
dlopen utility #2337
Conversation
43a0683
to
8dfc846
Compare
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.
The style suggestions all seem correct from the checker.
FWIW, I tend to use (void)getchar()
in my test programs when I want them to hang around while I use a debugger, etc. A timeout is fine though.
8dfc846
to
5fb093c
Compare
48d3650
to
d0060dd
Compare
I switched to this as the default behavior, but kept the sleep option. |
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.
Just a few nits and a question, overall looks good to me
d0060dd
to
6d47609
Compare
Attempts to dlopen each command line argument then sleeps. This allows trivial demonstration of the impact of loading various libraries without the need to write custom code.
6d47609
to
76d9fda
Compare
Attempts to dlopen each command line argument then sleeps. Useful for demoing the idea of plugins without a real plugin system.
TODO: