From: Ján Tomko Date: Mon, 14 Oct 2019 15:46:42 +0000 (+0200) Subject: syntax-check: forbid ATTRIBUTE macros with a GLib replacement X-Git-Tag: v5.9.0-rc1~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4f979c06e878fbbf7690070540dec9cd8661717;p=thirdparty%2Flibvirt.git syntax-check: forbid ATTRIBUTE macros with a GLib replacement Signed-off-by: Ján Tomko Reviewed-by: Michal Privoznik --- diff --git a/build-aux/syntax-check.mk b/build-aux/syntax-check.mk index c220dadd6c..c30d575e77 100644 --- a/build-aux/syntax-check.mk +++ b/build-aux/syntax-check.mk @@ -628,6 +628,12 @@ sc_avoid_g_gnuc_unused_in_header: halt='use G_GNUC_UNUSED in .c rather than .h files' \ $(_sc_search_regexp) +sc_prohibit_attribute_macros: + @prohibit='ATTRIBUTE_(UNUSED|NORETURN|SENTINEL|RETURN_CHECK)' \ + in_vc_files='\.[ch]$$' \ + halt='use GLib macros: G_GNUC_{UNUSED,NORETURN,NULL_TERMINATED,WARN_UNUSED_RESULT}' \ + $(_sc_search_regexp) + sc_prohibit_int_index: @prohibit='\<(int|unsigned)\s*\*?index\>(\s|,|;)' \ halt='use different name than 'index' for declaration' \