In this presentation in slide 5 the libc.so
is supposed to be part of the sandbox of every application. However for example in this paper it is stated that the libc is dynamically linked, which means that only during runtime of an application the actual location of the libc is determined and it is shared by all applications.
Is it then correct to say that while every application has access to the libc they all share the same instance of it and they do not have a deep copy of it in their application sandbox ?
And this stands in contrast to the Dalvik VM, for which every app has an own instance of ?