From: Julien Grall Date: Fri, 5 Mar 2021 12:40:03 +0000 (+0000) Subject: tools/xenstore: Check the format printf for xprintf() and barf{,_perror}() X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~822 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1fff444679a1ffa67d0bf55744b80555ab58f9f8;p=xen.git tools/xenstore: Check the format printf for xprintf() and barf{,_perror}() Allow GCC to analyze the format printf for xprintf() and barf{,_perror}(). Take the opportunity to define __noreturn to make the prototype for barf{,_perror})() easier to read. Also document why 'extern' is used for xprintf(). Signed-off-by: Julien Grall Reviewed-by: Juergen Gross Reviewed-by: Ian Jackson Release-Acked-by: Ian Jackson --- diff --git a/tools/xenstore/utils.h b/tools/xenstore/utils.h index 3dfb96b556..87713a8e5d 100644 --- a/tools/xenstore/utils.h +++ b/tools/xenstore/utils.h @@ -29,10 +29,13 @@ const char *dump_state_align(FILE *fp); #define PRINTF_ATTRIBUTE(a1, a2) __attribute__((format (printf, a1, a2))) -void barf(const char *fmt, ...) __attribute__((noreturn)); -void barf_perror(const char *fmt, ...) __attribute__((noreturn)); +#define __noreturn __attribute__((noreturn)) -extern void (*xprintf)(const char *fmt, ...); +void barf(const char *fmt, ...) __noreturn PRINTF_ATTRIBUTE(1, 2); +void barf_perror(const char *fmt, ...) __noreturn PRINTF_ATTRIBUTE(1, 2); + +/* Function pointer as xprintf() can be configured at runtime. */ +extern void (*xprintf)(const char *fmt, ...) PRINTF_ATTRIBUTE(1, 2); #define eprintf(_fmt, _args...) xprintf("[ERR] %s" _fmt, __FUNCTION__, ##_args)