2007-11-13 18:02:18 -08:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 1999-2000 by authors.
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
2008-01-16 14:09:04 -08:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-09-10 01:12:34 -07:00
|
|
|
#include <signal.h>
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alMain.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "alError.h"
|
|
|
|
|
2011-09-10 01:12:34 -07:00
|
|
|
ALboolean TrapALError = AL_FALSE;
|
|
|
|
|
2011-08-30 23:28:38 -07:00
|
|
|
AL_API ALenum AL_APIENTRY alGetError(void)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2009-08-16 16:02:13 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALenum errorCode;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-08-30 23:28:38 -07:00
|
|
|
Context = GetContextRef();
|
2009-08-16 16:02:13 -07:00
|
|
|
if(!Context) return AL_INVALID_OPERATION;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-08-29 21:30:12 -07:00
|
|
|
errorCode = ExchangeInt(&Context->LastError, AL_NO_ERROR);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-08-29 20:52:13 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2009-08-16 16:02:13 -07:00
|
|
|
return errorCode;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2010-03-16 17:35:51 -07:00
|
|
|
ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2011-09-10 01:12:34 -07:00
|
|
|
if(TrapALError)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2011-09-14 02:10:42 -07:00
|
|
|
/* DebugBreak will cause an exception if there is no debugger */
|
|
|
|
if(IsDebuggerPresent())
|
2011-09-10 01:12:34 -07:00
|
|
|
DebugBreak();
|
|
|
|
#elif defined(SIGTRAP)
|
2011-09-30 20:46:18 -07:00
|
|
|
raise(SIGTRAP);
|
2011-09-10 01:12:34 -07:00
|
|
|
#endif
|
|
|
|
}
|
2011-08-29 21:30:12 -07:00
|
|
|
CompExchangeInt(&Context->LastError, AL_NO_ERROR, errorCode);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|