Loading shared Libraries dynamically

HI,
I am dynamically loading shared libraries using shl_load(). There are multiple processes (50 or more) which loads the same shared library. Will Unix internally load only one copy of the shared library or it will load multiple copies.

Can I have memory issues if this is done.

Thanks,
Deb.

It will load one copy. This is why it's called a "shared" library.