trunk: backport eventing from 1.4.3

This commit is contained in:
Marian Krivos
2012-02-05 12:16:58 +00:00
parent 59fe68edbe
commit 7d7c02c579
412 changed files with 3564 additions and 3634 deletions

View File

@@ -1,7 +1,7 @@
//
// SharedLibrary_HPUX.cpp
//
// $Id: //poco/svn/Foundation/src/SharedLibrary_HPUX.cpp#2 $
// $Id: //poco/1.4/Foundation/src/SharedLibrary_HPUX.cpp#2 $
//
// Library: Foundation
// Package: SharedLibrary
@@ -57,7 +57,7 @@ SharedLibraryImpl::~SharedLibraryImpl()
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);