#include <string.h>
#include <arpa/inet.h>
#include <stdlib.h>
+#include <stdbool.h>
#define TRACEPOINT_DEFINE
#include "ust_tests_hello.h"
double dbl = 2.0;
float flt = 2222.0;
int delay = 0;
+ bool mybool = 123; /* should print "1" */
init_int_handler();
for (i = 0; i < 1000000; i++) {
netint = htonl(i);
tracepoint(ust_tests_hello, tptest, i, netint, values,
- text, strlen(text), dbl, flt);
+ text, strlen(text), dbl, flt, mybool);
//usleep(100000);
}
fprintf(stderr, " done.\n");
*/
#include <lttng/tracepoint.h>
+#include <stdbool.h>
TRACEPOINT_EVENT(ust_tests_hello, tptest,
TP_ARGS(int, anint, int, netint, long *, values,
- char *, text, size_t, textlen,
- double, doublearg, float, floatarg),
+ char *, text, size_t, textlen,
+ double, doublearg, float, floatarg,
+ bool, boolarg),
TP_FIELDS(
ctf_integer(int, intfield, anint)
ctf_integer_hex(int, intfield2, anint)
ctf_string(stringfield, text)
ctf_float(float, floatfield, floatarg)
ctf_float(double, doublefield, doublearg)
+ ctf_integer(bool, boolfield, boolarg)
)
)