diff options
author | Michi Henning <michi@zeroc.com> | 2002-11-29 01:18:03 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-11-29 01:18:03 +0000 |
commit | 404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b (patch) | |
tree | 12023d167f8ab1b161aaec017a206863f4888bbf /cpp/test/IceUtil/thread/DetachTest.h | |
parent | fixing potential deadlock with ObjectAdapter (diff) | |
download | ice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.tar.bz2 ice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.tar.xz ice-404a9441f45ac9ca1ba39f04c7f8d1f9fc79de5b.zip |
Added ThreadControl::detach().
Diffstat (limited to 'cpp/test/IceUtil/thread/DetachTest.h')
-rw-r--r-- | cpp/test/IceUtil/thread/DetachTest.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/DetachTest.h b/cpp/test/IceUtil/thread/DetachTest.h new file mode 100644 index 00000000000..b7b844ad9b4 --- /dev/null +++ b/cpp/test/IceUtil/thread/DetachTest.h @@ -0,0 +1,31 @@ +// ********************************************************************** +// +// Copyright (c) 2002 +// ZeroC, Inc. +// Billerica, MA, USA +// +// All Rights Reserved. +// +// Ice is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License version 2 as published by +// the Free Software Foundation. +// +// ********************************************************************** + +#ifndef DETACH_TEST_H +#define DETACH_TEST_H + +#include <TestBase.h> + +class DetachTest : public TestBase +{ +public: + + DetachTest(); + +private: + + virtual void run(); +}; + +#endif |