diff options
Diffstat (limited to 'cpp/include/IceUtil/MutexProtocol.h')
-rw-r--r-- | cpp/include/IceUtil/MutexProtocol.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/MutexProtocol.h b/cpp/include/IceUtil/MutexProtocol.h new file mode 100644 index 00000000000..b435b457bee --- /dev/null +++ b/cpp/include/IceUtil/MutexProtocol.h @@ -0,0 +1,28 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef ICE_UTIL_MUTEX_PROTOCOL_H +#define ICE_UTIL_MUTEX_PROTOCOL_H + +#include <IceUtil/Config.h> + +namespace IceUtil +{ + +enum MutexProtocol +{ + PrioInherit, + PrioNone +}; + +ICE_UTIL_API MutexProtocol getDefaultMutexProtocol(); + +} // End namespace IceUtil + +#endif |