I am very new to linux Application Development.
I have two libraries shared libraries libGetData.so and libProcessData.so.
And I am Running two Different C++ Applications as A and B,on a Linux PC and using these two libraries in both applications.
I have few static variables in both libraries.
But, When I set a static variable in libGetData.so library from Application A. Its is not reflecting in Application B.
My goal is if I use a shared library in any Application and if I set any static variable in that library. Same thing should reflect on an-other application which is using same library.
Please help me...