X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fctf-writer%2Fclock-class.h;h=ec78f66bddc359569950bafe6f879177b92f82b1;hb=6162e6b7a6d907974d954419c2375f654f39eb72;hp=b7bd7014609c8c5ccd9708e50f2ff1cdcdcaee1d;hpb=91d8147391efdc4d42cc4e1c171a65c0372a008f;p=babeltrace.git diff --git a/src/ctf-writer/clock-class.h b/src/ctf-writer/clock-class.h index b7bd7014..ec78f66b 100644 --- a/src/ctf-writer/clock-class.h +++ b/src/ctf-writer/clock-class.h @@ -26,8 +26,8 @@ */ #include "common/macros.h" -#include "lib/object-pool.h" -#include "compat/uuid.h" +#include "object-pool.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 */