X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fctf-writer%2Fclock-class.h;h=ec78f66bddc359569950bafe6f879177b92f82b1;hp=dfe95cc71ef8b87cec08774210b08cbb5fb0d98a;hb=6162e6b7a6d907974d954419c2375f654f39eb72;hpb=8bd04432c92ff6aad64a7f857d9de6f2a82f90f5 diff --git a/src/ctf-writer/clock-class.h b/src/ctf-writer/clock-class.h index dfe95cc7..ec78f66b 100644 --- a/src/ctf-writer/clock-class.h +++ b/src/ctf-writer/clock-class.h @@ -27,7 +27,7 @@ #include "common/macros.h" #include "object-pool.h" -#include "compat/uuid.h" +#include "common/uuid.h" #include #include #include @@ -43,7 +43,7 @@ struct bt_ctf_clock_class { uint64_t precision; int64_t offset_s; /* Offset in seconds */ int64_t offset; /* Offset in ticks */ - unsigned char uuid[BABELTRACE_UUID_LEN]; + bt_uuid_t uuid; int uuid_set; int absolute; @@ -111,10 +111,10 @@ BT_HIDDEN int bt_ctf_clock_class_set_is_absolute( struct bt_ctf_clock_class *clock_class, bt_bool is_absolute); BT_HIDDEN -const unsigned char *bt_ctf_clock_class_get_uuid( +const uint8_t *bt_ctf_clock_class_get_uuid( struct bt_ctf_clock_class *clock_class); BT_HIDDEN int bt_ctf_clock_class_set_uuid(struct bt_ctf_clock_class *clock_class, - const unsigned char *uuid); + const uint8_t *uuid); #endif /* BABELTRACE_CTF_WRITER_CLOCK_CLASS_INTERNAL_H */