Trace IR and notification APIs: split into private and public APIs
[babeltrace.git] / include / babeltrace / trace-ir / trace.h
index 67fc1d987114b8f2cda19bf7947701510012ce9d..a2a05202eaea791e639ee1f024155ba2d5ea3a0f 100644 (file)
@@ -2,8 +2,6 @@
 #define BABELTRACE_TRACE_IR_TRACE_H
 
 /*
- * BabelTrace - Trace IR: Trace
- *
  * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
@@ -44,30 +42,14 @@ struct bt_stream;
 struct bt_stream_class;
 struct bt_field_class;
 struct bt_value;
-struct bt_packet_header_field;
-
-typedef void (* bt_trace_is_static_listener)(
-       struct bt_trace *trace, void *data);
-
-typedef void (* bt_trace_listener_removed)(
-       struct bt_trace *trace, void *data);
-
-extern struct bt_trace *bt_trace_create(void);
 
 extern bt_bool bt_trace_assigns_automatic_stream_class_id(
                struct bt_trace *trace);
 
-extern int bt_trace_set_assigns_automatic_stream_class_id(
-               struct bt_trace *trace, bt_bool value);
-
 extern const char *bt_trace_get_name(struct bt_trace *trace);
 
-extern int bt_trace_set_name(struct bt_trace *trace, const char *name);
-
 extern bt_uuid bt_trace_get_uuid(struct bt_trace *trace);
 
-extern int bt_trace_set_uuid(struct bt_trace *trace, bt_uuid uuid);
-
 extern uint64_t bt_trace_get_environment_entry_count(struct bt_trace *trace);
 
 extern void bt_trace_borrow_environment_entry_by_index(
@@ -77,20 +59,9 @@ extern void bt_trace_borrow_environment_entry_by_index(
 extern struct bt_value *bt_trace_borrow_environment_entry_value_by_name(
                struct bt_trace *trace, const char *name);
 
-extern int bt_trace_set_environment_entry_integer(
-               struct bt_trace *trace, const char *name,
-               int64_t value);
-
-extern int bt_trace_set_environment_entry_string(
-               struct bt_trace *trace, const char *name,
-               const char *value);
-
 extern struct bt_field_class *bt_trace_borrow_packet_header_field_class(
                struct bt_trace *trace);
 
-extern int bt_trace_set_packet_header_field_class(struct bt_trace *trace,
-               struct bt_field_class *packet_header_field_class);
-
 extern uint64_t bt_trace_get_stream_class_count(struct bt_trace *trace);
 
 extern struct bt_stream_class *bt_trace_borrow_stream_class_by_index(
@@ -109,17 +80,6 @@ extern struct bt_stream *bt_trace_borrow_stream_by_id(
 
 extern bt_bool bt_trace_is_static(struct bt_trace *trace);
 
-extern int bt_trace_make_static(struct bt_trace *trace);
-
-extern int bt_trace_add_is_static_listener(
-               struct bt_trace *trace,
-               bt_trace_is_static_listener listener,
-               bt_trace_listener_removed listener_removed, void *data,
-               uint64_t *listener_id);
-
-extern int bt_trace_remove_is_static_listener(
-               struct bt_trace *trace, uint64_t listener_id);
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.024339 seconds and 4 git commands to generate.