summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-24 01:19:52 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-24 01:19:52 +0000
commit7d120f6d804e2ce48b05dc0492d915ce699dc147 (patch)
tree665e0cc7bfbe1e0db23a31803a2571e9e51cd2bd /ace
parente4a979f931752341455287c9edc13f6930ac4b6b (diff)
downloadATCD-7d120f6d804e2ce48b05dc0492d915ce699dc147.tar.gz
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r--ace/DLL.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ace/DLL.h b/ace/DLL.h
index 30e79540fc0..33170a46071 100644
--- a/ace/DLL.h
+++ b/ace/DLL.h
@@ -62,7 +62,8 @@ public:
// Other supported modes include: <RTLD_NOW>, which performs all
// necessary relocations when <dll_name> is first loaded and
// <RTLD_GLOBAL>, which makes symbols available for relocation
- // processing of any other DLLs.
+ // processing of any other DLLs. Returns -1 on failure and 0 on
+ // success.
int close (void);
// Call to close the DLL object.
@@ -93,6 +94,10 @@ private:
int close_on_destruction_;
// This flag keeps track of whether we should close the handle
// automatically when the destructor runs.
+
+ // = Disable copying and assignment since we don't handle these.
+ ACE_DLL (const ACE_DLL &);
+ void operator= (const ACE_DLL &);
};
#endif /* ACE_DLL_H */