diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-07-18 14:56:57 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 22:30:51 +0000 |
commit | 61d3cdbb34ed7ebaa9a9a3c4f13595488b80c8f5 (patch) | |
tree | d44aabf9275f27eacbf6b877eed878a4ae3ee671 /src/qcommon | |
parent | 2e4f58b4422995f703e51aa92a7e49d0d0664f00 (diff) |
Bug 4812 - GCC __attribute__ annotations for printf, non-returning functions etc., patch by linux@youmustbejoking.demon.co.uk and Zack Middleton
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/common.c | 12 | ||||
-rw-r--r-- | src/qcommon/q_shared.h | 2 | ||||
-rw-r--r-- | src/qcommon/qcommon.h | 8 | ||||
-rw-r--r-- | src/qcommon/vm_x86_64.c | 10 | ||||
-rw-r--r-- | src/qcommon/vm_x86_64_assembler.c | 9 |
5 files changed, 19 insertions, 22 deletions
diff --git a/src/qcommon/common.c b/src/qcommon/common.c index 6b61e98a..0a4e7eba 100644 --- a/src/qcommon/common.c +++ b/src/qcommon/common.c @@ -256,19 +256,10 @@ void QDECL Com_Error( int code, const char *fmt, ... ) { va_list argptr; static int lastErrorTime; static int errorCount; - static qboolean calledSysError = qfalse; int currentTime; if(com_errorEntered) - { - if(!calledSysError) - { - calledSysError = qtrue; - Sys_Error("recursive error after: %s", com_errorMessage); - } - - return; - } + Sys_Error("recursive error after: %s", com_errorMessage); com_errorEntered = qtrue; @@ -344,7 +335,6 @@ void QDECL Com_Error( int code, const char *fmt, ... ) { Com_Shutdown (); - calledSysError = qtrue; Sys_Error ("%s", com_errorMessage); } diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index cb05a61e..5e701cc6 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -910,7 +910,7 @@ qboolean Info_Validate( const char *s ); void Info_NextPair( const char **s, char *key, char *value ); // this is only here so the functions in q_shared.c and bg_*.c can link -void QDECL Com_Error( int level, const char *error, ... ) __attribute__ ((format (printf, 2, 3))); +void QDECL Com_Error( int level, const char *error, ... ) __attribute__ ((noreturn, format(printf, 2, 3))); void QDECL Com_Printf( const char *msg, ... ) __attribute__ ((format (printf, 1, 2))); diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index a436641e..035d98b1 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -799,8 +799,8 @@ void Com_BeginRedirect (char *buffer, int buffersize, void (*flush)(char *)); void Com_EndRedirect( void ); void QDECL Com_Printf( const char *fmt, ... ) __attribute__ ((format (printf, 1, 2))); void QDECL Com_DPrintf( const char *fmt, ... ) __attribute__ ((format (printf, 1, 2))); -void QDECL Com_Error( int code, const char *fmt, ... ) __attribute__ ((format (printf, 2, 3))); -void Com_Quit_f( void ); +void QDECL Com_Error( int code, const char *fmt, ... ) __attribute__ ((noreturn, format(printf, 2, 3))); +void Com_Quit_f( void ) __attribute__ ((noreturn)); void Com_GameRestart(int checksumFeed, qboolean disconnect); int Com_Milliseconds( void ); // will be journaled properly @@ -1057,8 +1057,8 @@ void *Sys_GetBotLibAPI( void *parms ); char *Sys_GetCurrentUser( void ); -void QDECL Sys_Error( const char *error, ...) __attribute__ ((format (printf, 1, 2))); -void Sys_Quit (void); +void QDECL Sys_Error( const char *error, ...) __attribute__ ((noreturn)) __attribute__ ((format (printf, 1, 2))); +void Sys_Quit (void) __attribute__ ((noreturn)); char *Sys_GetClipboardData( void ); // note that this isn't journaled... void Sys_Print( const char *msg ); diff --git a/src/qcommon/vm_x86_64.c b/src/qcommon/vm_x86_64.c index 1071e79f..36dd95b5 100644 --- a/src/qcommon/vm_x86_64.c +++ b/src/qcommon/vm_x86_64.c @@ -230,7 +230,7 @@ static unsigned char op_argsize[256] = [OP_BLOCK_COPY] = 4, }; -void emit(const char* fmt, ...) +static __attribute__ ((format (printf, 1, 2))) void emit(const char* fmt, ...) { va_list ap; char line[4096]; @@ -382,26 +382,26 @@ static void* getentrypoint(vm_t* vm) return vm->codeBase; } -static void CROSSCALL eop(void) +static __attribute__ ((noreturn)) void CROSSCALL eop(void) { Com_Error(ERR_DROP, "End of program reached without return!"); exit(1); } -static void CROSSCALL jmpviolation(void) +static __attribute__ ((noreturn)) void CROSSCALL jmpviolation(void) { Com_Error(ERR_DROP, "Program tried to execute code outside VM"); exit(1); } #ifdef DEBUG_VM -static void CROSSCALL memviolation(void) +static __attribute__ ((noreturn)) void CROSSCALL memviolation(void) { Com_Error(ERR_DROP, "Program tried to access memory outside VM, or unaligned memory access"); exit(1); } -static void CROSSCALL opstackviolation(void) +static __attribute__ ((noreturn)) void CROSSCALL opstackviolation(void) { Com_Error(ERR_DROP, "Program corrupted the VM opStack"); exit(1); diff --git a/src/qcommon/vm_x86_64_assembler.c b/src/qcommon/vm_x86_64_assembler.c index ad2aeea5..2fb67cf1 100644 --- a/src/qcommon/vm_x86_64_assembler.c +++ b/src/qcommon/vm_x86_64_assembler.c @@ -32,6 +32,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include <inttypes.h> +// Ignore __attribute__ on non-gcc platforms +#ifndef __GNUC__ +#ifndef __attribute__ +#define __attribute__(x) +#endif +#endif + typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; @@ -57,7 +64,7 @@ static FILE* fout; #define debug(fmt, args...) #endif -static void _crap(const char* func, const char* fmt, ...) +static __attribute__ ((noreturn)) __attribute__ ((format (printf, 2, 3))) void _crap(const char* func, const char* fmt, ...) { va_list ap; fprintf(stderr, "%s() - ", func); |