2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2012-12-03 22:55:27 +00:00
|
|
|
Copyright (C) 2012 Robert Beckebans
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
2012-12-03 22:55:27 +00:00
|
|
|
// RB: missing __analysis_assume
|
|
|
|
#if defined(__MINGW32__)
|
|
|
|
#include <sal.h>
|
|
|
|
#endif
|
|
|
|
// RB end
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
#include "ParallelJobList_JobHeaders.h"
|
|
|
|
|
2012-12-01 04:37:17 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h> // for DebugBreak
|
|
|
|
#endif
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
================================================================================================
|
|
|
|
|
|
|
|
Software Cache
|
|
|
|
|
|
|
|
================================================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint32 globalDmaTag;
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
bool SpursEmulationAssertFailed( const char* filename, int line, const char* expression )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
static bool halt = true;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( halt )
|
|
|
|
{
|
2012-12-01 04:37:17 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _MSC_VER
|
2012-11-26 18:58:24 +00:00
|
|
|
__debugbreak();
|
2012-12-01 04:37:17 +00:00
|
|
|
#else
|
|
|
|
// DG: mingw support
|
|
|
|
DebugBreak();
|
|
|
|
#endif
|
|
|
|
#else // not _WIN32
|
|
|
|
// DG: POSIX support
|
2012-12-04 11:11:14 +00:00
|
|
|
raise( SIGTRAP );
|
2012-12-01 04:37:17 +00:00
|
|
|
// DG: end
|
|
|
|
#endif // _WIN32
|
2012-12-04 11:11:14 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|