//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES.
//
// exceptions header for threads library
#pragma once
#ifndef _THR_EXCEPTIONS
#define _THR_EXCEPTIONS
#ifndef RC_INVOKED
#include <stdexcept>
#include <thr/threads.h>

 #pragma pack(push,_CRT_PACKING)
 #pragma warning(push,3)
 #pragma push_macro("new")
 #undef new

_STD_BEGIN
_CRTIMP2_PURE _NO_RETURN(__CLRCALL_PURE_OR_CDECL _Xbad_alloc());
_STD_END

namespace stdext
	{	// Dinkum Libraries
	namespace threads
		{	// Dinkum C++ Threads Library
class lock_error
	: public _STD runtime_error
	{	// lock error exception
public:
	lock_error()
		: _STD runtime_error("lock error")
		{	// default construct
		}
	};

class thread_resource_error
	: public _STD runtime_error
	{	// resource error exception
public:
	thread_resource_error()
		: _STD runtime_error("thread resource error")
		{	// default construct
		}
	};

_CRTIMP2_PURE void __cdecl _Throw_lock_error();
_CRTIMP2_PURE void __cdecl _Throw_resource_error();

inline int _Validate(int _Res)
	{	// convert error code to exception
	if (_Res == thrd_nomem)
		_STD _Xbad_alloc();
	else if (_Res == thrd_error)
		_Throw_resource_error();
	return (_Res);
	}
		}	// namespace threads
	}	// namespace stdext
 #pragma pop_macro("new")
 #pragma warning(pop)
 #pragma pack(pop)
#endif /* RC_INVOKED */
#endif /* _THR_EXCEPTIONS */

/*
 * This file is derived from software bearing the following
 * restrictions:
 *
 * (c) Copyright William E. Kempf 2001
 *
 * Permission to use, copy, modify, distribute and sell this
 * software and its documentation for any purpose is hereby
 * granted without fee, provided that the above copyright
 * notice appear in all copies and that both that copyright
 * notice and this permission notice appear in supporting
 * documentation. William E. Kempf makes no representations
 * about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/*
 * Copyright (c) 1992-2012 by P.J. Plauger.  ALL RIGHTS RESERVED.
 * Consult your license regarding permissions and restrictions.
V6.00:0009 */
