Shared library and exe file.

I have a question. Where can I find info about how the shared libraries work and how one executable file is run in detail in the freebsd OS? Details, for example, what happens when one executable file is run frequently, please.
 
If you want to see how an executable works gdb(1) is a debugger. It'll let you single step through an executable.

The rtld(1) manpage will tell you more about how the dynamic linker works. You can see which libraries are use by an executable with the ldd(1) command.
 
nabat1 said:
I have a question. Where can I find info about how the shared libraries work and how one executable file is run in detail in the freebsd OS?
http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
http://en.wikipedia.org/wiki/Executable_and_Linkable_Format

Learn to use google if you want to program.

nabat1 said:
Details, for example, what happens when one executable file is run frequently, please.

Same as if it was run single time but multiplied? :D
 
Back
Top