$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Pavel Vozenilek (pavel_vozenilek_at_[hidden])
Date: 2005-05-06 13:57:31
"Pavel Antokolsky aka Zigmar" wrote:
> I've tested Singleton library for various aspects, including this. On
> my test platform (windows, VC7.1) the singleton in shared libraries
> (dlls) does not work as expected.
>
Win32 DLLs would need some support - Windows does not resolve
statics when a DLL is loaded.
Either explicit registering of Singleton infrastructure from each DLL
would be needed or perhaps using shared segment.
Considering DLLs is next phase of the development, AFAIK.
I am quite suprised it works under Linux.
/Pavel