X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Ftracker.cpp;h=c5efaa3198b6aa5cfaea5c038e491ccfee92cc89;hb=c10f9cdd994258358bb3766c2e92dab71e4ceef2;hp=84b6c6b8f11c33f31039f711ddb0061f5d6ae568;hpb=f46376a14da2eb796690cb4e718e8b213839d6ea;p=lttng-tools.git diff --git a/src/common/tracker.cpp b/src/common/tracker.cpp index 84b6c6b8f..c5efaa319 100644 --- a/src/common/tracker.cpp +++ b/src/common/tracker.cpp @@ -18,6 +18,8 @@ #include +#include + struct process_attr_tracker_values_comm_header { uint32_t count; }; @@ -33,16 +35,16 @@ struct process_attr_tracker_value_comm { }; #define GET_INTEGRAL_COMM_VALUE(value_ptr, as_type) \ - ((as_type)(is_signed(as_type) ? (value_ptr)->u._signed : \ + ((as_type)(std::is_signed::value ? (value_ptr)->u._signed : \ (value_ptr)->u._unsigned)) -#define SET_INTEGRAL_COMM_VALUE(comm_value, value) \ - if (is_signed(typeof(value))) { \ +#define SET_INTEGRAL_COMM_VALUE(comm_value, val) \ + if (std::is_signed::value) { \ (comm_value)->u._signed = \ - (typeof((comm_value)->u._signed)) value; \ + (typeof((comm_value)->u._signed)) val; \ } else { \ (comm_value)->u._unsigned = \ - (typeof((comm_value)->u._unsigned)) value; \ + (typeof((comm_value)->u._unsigned)) val; \ } static inline bool is_virtual_process_attr(enum lttng_process_attr process_attr)