X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fustcomm.h;h=837332b71b3f75090d09f466279d2448b1b7713d;hb=249cffb5cdf9cff45298a44580b24d4dd9d63ba0;hp=81ce885dc460cb76b3eb6208627f3ece0009757d;hpb=9d315d6d74aac2986b10d708c864d152a0febec7;p=lttng-ust.git diff --git a/src/common/ustcomm.h b/src/common/ustcomm.h index 81ce885d..837332b7 100644 --- a/src/common/ustcomm.h +++ b/src/common/ustcomm.h @@ -11,8 +11,8 @@ * These declarations should NOT be considered stable API. */ -#ifndef _UST_COMMON_USTCOMM_H -#define _UST_COMMON_USTCOMM_H +#ifndef _UST_COMMON_UST_COMM_H +#define _UST_COMMON_UST_COMM_H #include #include @@ -43,7 +43,7 @@ struct lttng_ust_enum_entry; struct lttng_integer_type; struct lttng_ust_session; -struct ustctl_reg_msg { +struct lttng_ust_ctl_reg_msg { uint32_t magic; uint32_t major; uint32_t minor; @@ -57,7 +57,7 @@ struct ustctl_reg_msg { uint32_t uint32_t_alignment; uint32_t uint64_t_alignment; uint32_t long_alignment; - uint32_t socket_type; /* enum ustctl_socket_type */ + uint32_t socket_type; /* enum lttng_ust_ctl_socket_type */ char name[LTTNG_UST_ABI_PROCNAME_LEN]; /* process name */ char padding[LTTNG_UST_COMM_REG_MSG_PADDING]; } __attribute__((packed)); @@ -185,7 +185,7 @@ struct ustcomm_notify_channel_msg { struct ustcomm_notify_channel_reply { int32_t ret_code; /* 0: ok, negative: error code */ uint32_t chan_id; - uint32_t header_type; /* enum ustctl_channel_header */ + uint32_t header_type; /* enum lttng_ust_ctl_channel_header */ char padding[USTCOMM_NOTIFY_CHANNEL_REPLY_PADDING]; } __attribute__((packed)); @@ -266,7 +266,7 @@ int ustcomm_recv_counter_shm_from_sessiond(int sock, * Returns -EPIPE or -ECONNRESET if other end has hung up. */ int ustcomm_send_reg_msg(int sock, - enum ustctl_socket_type type, + enum lttng_ust_ctl_socket_type type, uint32_t bits_per_long, uint32_t uint8_t_alignment, uint32_t uint16_t_alignment, @@ -287,7 +287,7 @@ int ustcomm_register_event(int sock, int loglevel, const char *signature, /* event signature (input) */ size_t nr_fields, /* fields */ - const struct lttng_ust_event_field **fields, + const struct lttng_ust_event_field * const *fields, const char *model_emf_uri, uint32_t *id) /* event id (output) */ __attribute__((visibility("hidden"))); @@ -300,7 +300,7 @@ int ustcomm_register_enum(int sock, int session_objd, /* session descriptor */ const char *enum_name, /* enum name (input) */ size_t nr_entries, /* entries */ - const struct lttng_ust_enum_entry **entries, + const struct lttng_ust_enum_entry * const *entries, uint64_t *id) /* enum id (output) */ __attribute__((visibility("hidden"))); @@ -324,4 +324,4 @@ int ustcomm_setsockopt_rcv_timeout(int sock, unsigned int msec) int ustcomm_setsockopt_snd_timeout(int sock, unsigned int msec) __attribute__((visibility("hidden"))); -#endif /* _UST_COMMON_USTCOMM_H */ +#endif /* _UST_COMMON_UST_COMM_H */