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 | d5b185bd2cba5dea6e24eae6ba656f828d3364a4 (patch) | |
tree | 92f31e65c54fd4ddef14531a8384b12374e2e5ab /ace/Synch_T.i | |
parent | 77f92ea4eb87c0a5bf5f8c48aa63f5facd608270 (diff) | |
download | ATCD-d5b185bd2cba5dea6e24eae6ba656f828d3364a4.tar.gz |
See my ChangeLog entry from 1 April 1999.
Diffstat (limited to 'ace/Synch_T.i')
-rw-r--r-- | ace/Synch_T.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Synch_T.i b/ace/Synch_T.i index 2df9c2f0656..c4e1b9d8d06 100644 --- a/ace/Synch_T.i +++ b/ace/Synch_T.i @@ -7,14 +7,14 @@ template <class ACE_LOCK> ACE_INLINE ACE_Guard<ACE_LOCK>::ACE_Guard (ACE_LOCK &l) - : lock_ (&l) + : lock_ (&l), owner_ (0) { this->acquire (); } template <class ACE_LOCK> ACE_INLINE ACE_Guard<ACE_LOCK>::ACE_Guard (ACE_LOCK &l, int block) - : lock_ (&l) + : lock_ (&l), owner_ (0) { if (block) this->acquire (); |