Fix a mixed-sign-comparison warning on MSVC
[openal-soft.git] / OpenAL32 / alError.c
blob6c95397713d592ce9eb100e691d7395e5d3bbef8
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2000 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #include "config.h"
23 #include <signal.h>
25 #ifdef HAVE_WINDOWS_H
26 #define WIN32_LEAN_AND_MEAN
27 #include <windows.h>
28 #endif
30 #include "alMain.h"
31 #include "AL/alc.h"
32 #include "alError.h"
34 ALboolean TrapALError = AL_FALSE;
36 ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
38 ALenum curerr = AL_NO_ERROR;
40 WARN("Error generated on context %p, code 0x%04x\n", Context, errorCode);
41 if(TrapALError)
43 #ifdef _WIN32
44 /* DebugBreak will cause an exception if there is no debugger */
45 if(IsDebuggerPresent())
46 DebugBreak();
47 #elif defined(SIGTRAP)
48 raise(SIGTRAP);
49 #endif
52 (void)(ATOMIC_COMPARE_EXCHANGE_STRONG_SEQ(&Context->LastError, &curerr, errorCode));
55 AL_API ALenum AL_APIENTRY alGetError(void)
57 ALCcontext *Context;
58 ALenum errorCode;
60 Context = GetContextRef();
61 if(!Context)
63 WARN("Querying error state on null context (implicitly 0x%04x)\n",
64 AL_INVALID_OPERATION);
65 if(TrapALError)
67 #ifdef _WIN32
68 if(IsDebuggerPresent())
69 DebugBreak();
70 #elif defined(SIGTRAP)
71 raise(SIGTRAP);
72 #endif
74 return AL_INVALID_OPERATION;
77 errorCode = ATOMIC_EXCHANGE_SEQ(&Context->LastError, AL_NO_ERROR);
79 ALCcontext_DecRef(Context);
81 return errorCode;