X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=08aea0fc19e5143ff501fc4d03d5cfff1e60b0d0;hb=6a3e30f3e728e4a9692e03514f061aa341d62ebf;hp=488aed25bfb23e946450bd79ae2413cc0e69c9fa;hpb=b028db44ca684fbd5361001dc3ed543a37374fbb;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index 488aed25b..08aea0fc1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -210,6 +210,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)