commit | 8ab941939480af65660182e343df22fcdced6005 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Sep 15 10:12:04 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Sep 15 10:32:12 2021 +0200 |
tree | 256f5251390473db1f27e109f47c847a7af24f2b | |
parent | 80d3daad50144b22891bcfdd6356c57a21977ce1 [diff] |
BUILD: threads: fix -Wundef for _POSIX_PRIORITY_SCHEDULING on libmusl Building with an old musl-based toolchain reported this warning: include/haproxy/thread.h: In function 'ha_thread_relax': include/haproxy/thread.h:256:5: warning: "_POSIX_PRIORITY_SCHEDULING" is not defined [-Wundef] #if _POSIX_PRIORITY_SCHEDULING ^ There were indeed two "#if" insteadd of #ifdef" for this macro, let's fix them.