diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-10-04 23:11:47 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-10-04 23:11:47 +0000 |
commit | 742052e96af8671880a2b7c3ac0ec2f30eaea00a (patch) | |
tree | ba33b6765b1508c6be310f8b289f8e8a3fddcd1d /cpp/src/Ice/DynamicLibrary.cpp | |
parent | bug fix (diff) | |
download | ice-742052e96af8671880a2b7c3ac0ec2f30eaea00a.tar.bz2 ice-742052e96af8671880a2b7c3ac0ec2f30eaea00a.tar.xz ice-742052e96af8671880a2b7c3ac0ec2f30eaea00a.zip |
delay shared library unloading
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r-- | cpp/src/Ice/DynamicLibrary.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp index 979123ea399..e9a5f212195 100644 --- a/cpp/src/Ice/DynamicLibrary.cpp +++ b/cpp/src/Ice/DynamicLibrary.cpp @@ -21,6 +21,9 @@ using namespace std; void IceInternal::incRef(DynamicLibrary* p) { p->__incRef(); } void IceInternal::decRef(DynamicLibrary* p) { p->__decRef(); } +void IceInternal::incRef(DynamicLibraryList* p) { p->__incRef(); } +void IceInternal::decRef(DynamicLibraryList* p) { p->__decRef(); } + IceInternal::DynamicLibrary::DynamicLibrary() : _hnd(0) { @@ -140,3 +143,9 @@ IceInternal::DynamicLibrary::getErrorMessage() const { return _err; } + +void +IceInternal::DynamicLibraryList::add(const DynamicLibraryPtr& library) +{ + _libraries.push_back(library); +} |