X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=4c58b93c6f5004cbb9994f03445aef1806d5ddb7;hb=a12945b3b8cd4d483e5e8f2a1adb6576badf1d4d;hp=eed5a74d8bcf34adc09af3c75f45ea0a31d234e0;hpb=f567ab92db2443285842cc3c8d91fdd37c986637;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index eed5a74d8..4c58b93c6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -211,6 +211,20 @@ check-assert-h-usage: fi .PHONY: check-assert-h-usage +ALL_LOCAL += thread-safety-check +thread-safety-check: + @if test -e '$(srcdir)'/.git && (git --version) >/dev/null 2>&1 && \ + grep -n -f '$(srcdir)'/build-aux/thread-safety-blacklist \ + `git ls-files '$(srcdir)' | grep '\.[ch]$$' \ + | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` \ + | $(EGREP) -v ':[ ]*/?\*'; \ + then \ + echo "See above for list of calls to functions that are"; \ + echo "blacklisted due to thread safety issues"; \ + exit 1; \ + fi +EXTRA_DIST += build-aux/thread-safety-blacklist + if HAVE_GROFF ALL_LOCAL += manpage-check manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)