mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
backport SharedLibrary changes from 1.4.2-p1
This commit is contained in:
@@ -55,9 +55,9 @@ SharedLibraryImpl::~SharedLibraryImpl()
|
||||
}
|
||||
|
||||
|
||||
void SharedLibraryImpl::loadImpl(const std::string& path)
|
||||
void SharedLibraryImpl::loadImpl(const std::string& path, int /*flags*/)
|
||||
{
|
||||
FastMutex::ScopedLock lock(_mutex);
|
||||
FastMutex::ScopedLock lock(_mutex);
|
||||
|
||||
if (_handle) throw LibraryAlreadyLoadedException(path);
|
||||
_handle = shl_load(path.c_str(), BIND_DEFERRED, 0);
|
||||
|
||||
Reference in New Issue
Block a user