$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Russell Hind (yg-boost-users_at_[hidden])
Date: 2003-07-02 02:22:57
Peter Dimov wrote:
>
> Is it possible that your program is using the multithreaded runtime but the
> filesystem library has been compiled as single threaded, or vice versa?
>
Certainly with Borland win32 builds, all libraries (bar thread
obviously) default to single threaded. I've had to build all libraries
as the multi-threaded version.
Dead-lock was the result I saw because of waiting on the spin-lock in a
shared_ptr (app was multi-threaded, signals library was single threaded
in my case)
Cheers
Russell