How do I know which shared libraries are loaded by an already running process?
I'm using Linux.
Try
lsof -p <pid> | grep .so
you may need to install lsof (apt-get install lsof on Ubuntu)
cat /proc/<pid>/maps
It shows the process memory map. A library should have --x- bit set in perm.
--x-
perm