diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-01 23:23:10 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-01 23:23:10 +0000 |
commit | 7fa2478432903b9a8ceeb13b02f2946ae1c64dbf (patch) | |
tree | 92f31e65c54fd4ddef14531a8384b12374e2e5ab /ace/Signal.h | |
parent | 84b9c202c5e9fb91a38c74e5e78f970655508c59 (diff) | |
download | ATCD-7fa2478432903b9a8ceeb13b02f2946ae1c64dbf.tar.gz |
See my ChangeLog entry from 1 April 1999.
Diffstat (limited to 'ace/Signal.h')
-rw-r--r-- | ace/Signal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Signal.h b/ace/Signal.h index dc92c572b80..1c45e6b6fe6 100644 --- a/ace/Signal.h +++ b/ace/Signal.h @@ -287,6 +287,12 @@ public: // Called by the <Reactor> to dispatch the signal handler. private: + ACE_Sig_Adapter (const ACE_Sig_Adapter &); + ACE_Sig_Adapter & operator= (const ACE_Sig_Adapter & rhs); + // Explicitly disallow use of implicitly generated copy + // constructor and assignment operator to prevent inadvertent + // memory leaks. + int sigkey_; // Key for this signal handler (used to remove it). |