mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 02:00:12 +01:00
Fix compilation on armv7l with gcc 11.2.0
Cc: mesa-stable Reviewed-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12810>
This commit is contained in:
parent
d2711f9b61
commit
d27805753f
1 changed files with 4 additions and 2 deletions
|
|
@ -106,12 +106,14 @@ extern bool fd_binning_enabled;
|
|||
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/syscall.h>
|
||||
|
||||
#define DBG(fmt, ...) \
|
||||
do { \
|
||||
if (FD_DBG(MSGS)) \
|
||||
mesa_logi("%5d: %s:%d: " fmt, gettid(), __FUNCTION__, __LINE__, \
|
||||
##__VA_ARGS__); \
|
||||
mesa_logi("%5d: %s:%d: " fmt, ((pid_t)syscall(SYS_gettid)), \
|
||||
__FUNCTION__, __LINE__, \
|
||||
##__VA_ARGS__); \
|
||||
} while (0)
|
||||
|
||||
#define perf_debug_message(debug, type, ...) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue