Handle model.emf.uri event info
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index 85b0f2d5ef8637ff8a25d5efe50dcaa5b8f7719d..3176bbd4d46ec48cb82ce997dfb4644c5ce7c6ee 100644 (file)
@@ -123,6 +123,7 @@ struct ctf_tracer_env {
 
        /* All strings below: "" if unset. */
        char procname[TRACER_ENV_LEN];
+       char hostname[TRACER_ENV_LEN];
        char domain[TRACER_ENV_LEN];
        char sysname[TRACER_ENV_LEN];
        char release[TRACER_ENV_LEN];
@@ -236,12 +237,14 @@ struct ctf_event_declaration {
        uint64_t id;            /* Numeric identifier within the stream */
        uint64_t stream_id;
        int loglevel;
+       GQuark model_emf_uri;
 
        enum {                                  /* Fields populated mask */
                CTF_EVENT_name  =               (1 << 0),
                CTF_EVENT_id    =               (1 << 1),
                CTF_EVENT_stream_id =           (1 << 2),
                CTF_EVENT_loglevel =            (1 << 4),
+               CTF_EVENT_model_emf_uri =       (1 << 5),
        } field_mask;
 };
 
This page took 0.02439 seconds and 4 git commands to generate.