templates: capitalize C comments
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 3 Sep 2020 15:34:19 +0000 (11:34 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 3 Sep 2020 15:34:19 +0000 (11:34 -0400)
This is just plus beau à mon avis.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
16 files changed:
barectf/templates/c/align-statements-comment.j2
barectf/templates/c/barectf.c.j2
barectf/templates/c/barectf.h.j2
barectf/templates/c/close-func-proto.j2
barectf/templates/c/ctx-init-func-proto.j2
barectf/templates/c/open-func-proto.j2
barectf/templates/c/serialize-write-ev-type-id-statements.j2
barectf/templates/c/serialize-write-magic-statements.j2
barectf/templates/c/serialize-write-packet-size-statements.j2
barectf/templates/c/serialize-write-skip-save-statements.j2
barectf/templates/c/serialize-write-statements-comment.j2
barectf/templates/c/serialize-write-stream-type-id-statements.j2
barectf/templates/c/serialize-write-uuid-statements.j2
barectf/templates/c/size-write-bit-array-statements.j2
barectf/templates/c/size-write-string-statements.j2
barectf/templates/c/trace-func-proto.j2

index 46c7faae635aa49553201ca999029ec787ff9bdb..765822e350d5b38d4b26f91383787bbc9ad468a2 100644 (file)
@@ -24,8 +24,8 @@
  #}
 {% if op.names %}
        {% if op.names | length == 1 %}
-/* align for {{ root_ft_prefix_names[op.top_name] }} structure */
+/* Align for {{ root_ft_prefix_names[op.top_name] }} structure */
        {%- else %}
-/* align for `{{ op.top_name }}` field */
+/* Align for `{{ op.top_name }}` field */
        {%- endif %}
 {% endif %}
index be831c1e051641b73ebbad8366163c620594b054..258dd7c68a11537bca6eacec97d8e71c7c97445f 100644 (file)
@@ -150,42 +150,42 @@ int _reserve_ev_space(void * const vctx, const uint32_t ev_size)
 {
        struct {{ ctx_struct_name }} * const ctx = _FROM_VOID_PTR(struct {{ ctx_struct_name }}, vctx);
 
-       /* event _cannot_ fit? */
+       /* Event _cannot_ fit? */
        if (ev_size > (ctx->packet_size - ctx->off_content)) {
                ctx->events_discarded++;
                return 0;
        }
 
-       /* packet is full? */
+       /* Packet is full? */
        if ({{ prefix }}packet_is_full(ctx)) {
-               /* yes: is back-end full? */
+               /* Yes: is the back-end full? */
                if (ctx->cbs.is_backend_full(ctx->data)) {
-                       /* yes: discard event */
+                       /* Yes: discard event */
                        ctx->events_discarded++;
                        return 0;
                }
 
-               /* back-end is not full: open new packet */
+               /* Back-end is _not_ full: open new packet */
                ctx->use_cur_last_event_ts = 1;
                ctx->cbs.open_packet(ctx->data);
                ctx->use_cur_last_event_ts = 0;
        }
 
-       /* event fits the current packet? */
+       /* Event fits the current packet? */
        if (ev_size > (ctx->packet_size - ctx->at)) {
-               /* no: close packet now */
+               /* No: close packet now */
                ctx->use_cur_last_event_ts = 1;
                ctx->cbs.close_packet(ctx->data);
                ctx->use_cur_last_event_ts = 0;
 
-               /* is back-end full? */
+               /* Is the back-end full? */
                if (ctx->cbs.is_backend_full(ctx->data)) {
-                       /* yes: discard event */
+                       /* Yes: discard event */
                        ctx->events_discarded++;
                        return 0;
                }
 
-               /* back-end is not full: open new packet */
+               /* Back-end is _not_ full: open new packet */
                ctx->use_cur_last_event_ts = 1;
                ctx->cbs.open_packet(ctx->data);
                ctx->use_cur_last_event_ts = 0;
@@ -200,9 +200,9 @@ void _commit_ev(void * const vctx)
 {
        struct {{ ctx_struct_name }} * const ctx = _FROM_VOID_PTR(struct {{ ctx_struct_name }}, vctx);
 
-       /* is packet full? */
+       /* Is the packet full? */
        if ({{ prefix }}packet_is_full(ctx)) {
-               /* yes: close it now */
+               /* Yes: close it now */
                ctx->cbs.close_packet(ctx->data);
        }
 }
@@ -252,10 +252,10 @@ void _commit_ev(void * const vctx)
                return;
        }
 
-       /* we can alter the packet */
+       /* We can alter the packet */
        ctx->in_tracing_section = 1;
 
-       /* do not open a packet that is already open */
+       /* Do not open a packet that is already open */
        if (ctx->packet_is_open) {
                ctx->in_tracing_section = saved_in_tracing_section;
                return;
@@ -265,7 +265,7 @@ void _commit_ev(void * const vctx)
        {% set pkt_header_ops = this_stream_ops.pkt_header_ops %}
        {% if pkt_header_ops %}
 
-       /* serialize packet header */
+       /* Serialize packet header */
        {
                {% for op in pkt_header_ops %}
                {{ op.serialize_str(stream_type=stream_type) | indent_tab(2) }}
@@ -274,7 +274,7 @@ void _commit_ev(void * const vctx)
        }
        {% endif %}
 
-       /* serialize packet context */
+       /* Serialize packet context */
        {
        {% for op in this_stream_ops.pkt_ctx_ops %}
                {{ op.serialize_str(stream_type=stream_type) | indent_tab(2) }}
@@ -282,13 +282,13 @@ void _commit_ev(void * const vctx)
        {% endfor %}
        }
 
-       /* save content beginning's offset */
+       /* Save content beginning's offset */
        ctx->off_content = ctx->at;
 
-       /* mark current packet as open */
+       /* Mark current packet as open */
        ctx->packet_is_open = 1;
 
-       /* not tracing anymore */
+       /* Not tracing anymore */
        ctx->in_tracing_section = saved_in_tracing_section;
 }
 
@@ -317,22 +317,22 @@ void _commit_ev(void * const vctx)
                return;
        }
 
-       /* we can alter the packet */
+       /* We can alter the packet */
        ctx->in_tracing_section = 1;
 
-       /* do not close a packet that is not open */
+       /* Do not close a packet that is not open */
        if (!ctx->packet_is_open) {
                ctx->in_tracing_section = saved_in_tracing_section;
                return;
        }
 
-       /* save content size */
+       /* Save content size */
        ctx->content_size = ctx->at;
        {% set name = 'timestamp_end' %}
        {% if name in stream_type._pkt_ctx_ft.members %}
                {% set op = stream_op_pkt_ctx_op(stream_type, name) %}
 
-       /* go back to `timestamp_end` field offset */
+       /* Go back to `timestamp_end` field offset */
        ctx->at = sctx->off_{{ c_common.op_src(op) }};
 
                {% set src = 'ts' %}
@@ -345,7 +345,7 @@ void _commit_ev(void * const vctx)
        {% if name in stream_type._pkt_ctx_ft.members %}
                {% set op = stream_op_pkt_ctx_op(stream_type, name) %}
 
-       /* go back to `content_size` field offset */
+       /* Go back to `content_size` field offset */
        ctx->at = sctx->off_{{ c_common.op_src(op) }};
 
                {% set src %}ctx->{{ name }}{% endset %}
@@ -358,7 +358,7 @@ void _commit_ev(void * const vctx)
        {% if name in stream_type._pkt_ctx_ft.members %}
                {% set op = stream_op_pkt_ctx_op(stream_type, name) %}
 
-       /* go back to `events_discarded` field offset */
+       /* Go back to `events_discarded` field offset */
        ctx->at = sctx->off_{{ c_common.op_src(op) }};
 
                {% set src %}ctx->{{ name }}{% endset %}
@@ -368,13 +368,13 @@ void _commit_ev(void * const vctx)
                {% endfilter %}
        {% endif %}
 
-       /* go back to end of packet */
+       /* Go back to end of packet */
        ctx->at = ctx->packet_size;
 
-       /* mark packet as closed */
+       /* Mark packet as closed */
        ctx->packet_is_open = 0;
 
-       /* not tracing anymore */
+       /* Not tracing anymore */
        ctx->in_tracing_section = saved_in_tracing_section;
 }
        {% if stream_type._ev_header_ft %}
@@ -388,7 +388,7 @@ static void _serialize_ev_header_{{ stream_type.name }}(void * const vctx,
        const {{ cg_opts.clock_type_c_types[def_clk_type] }} ts = sctx->cur_last_event_ts;
                {% endif %}
 
-       /* serialize event header */
+       /* Serialize event header */
        {
                {% for op in this_stream_ops.ev_header_ops %}
                {{ op.serialize_str(stream_type=stream_type) | indent_tab(2) }}
@@ -403,7 +403,7 @@ static void _serialize_ev_common_ctx_{{ stream_type.name }}(void * const vctx{{
 {
        struct {{ ctx_struct_name }} * const ctx = _FROM_VOID_PTR(struct {{ ctx_struct_name }}, vctx);
 
-       /* serialize event common context */
+       /* Serialize event common context */
        {
                {% for op in this_stream_ops.ev_common_ctx_ops %}
                {{ op.serialize_str(stream_type=stream_type) | indent_tab(2) }}
@@ -420,19 +420,19 @@ static void _serialize_ev_{{ stream_type.name }}_{{ ev_type.name }}(void * const
        struct {{ ctx_struct_name }} * const ctx = _FROM_VOID_PTR(struct {{ ctx_struct_name }}, vctx);
                {% if stream_type._ev_header_ft %}
 
-       /* serialize header */
+       /* Serialize header */
        _serialize_ev_header_{{ stream_type.name }}(ctx, {{ ev_type.id }});
                {% endif %}
                {% if stream_type.event_common_context_field_type %}
 
-       /* serialize common context */
+       /* Serialize common context */
                        {% set params = macros.ft_call_params(root_ft_prefixes.ECC, stream_type.event_common_context_field_type) %}
        _serialize_ev_common_ctx_{{ stream_type.name }}(ctx{{ params }});
                {% endif %}
                {% set this_ev_ops = this_stream_ops.ev_ops[ev_type] %}
                {% if this_ev_ops.spec_ctx_ops %}
 
-       /* serialize specific context */
+       /* Serialize specific context */
        {
                        {% for op in this_ev_ops.spec_ctx_ops %}
                {{ op.serialize_str(stream_type=stream_type, ev_type=ev_type) | indent_tab(2) }}
@@ -442,7 +442,7 @@ static void _serialize_ev_{{ stream_type.name }}_{{ ev_type.name }}(void * const
                {% endif %}
                {% if this_ev_ops.payload_ops %}
 
-       /* serialize payload */
+       /* Serialize payload */
        {
                        {% for op in this_ev_ops.payload_ops %}
                {{ op.serialize_str(stream_type=stream_type, ev_type=ev_type) | indent_tab(2) }}
@@ -462,7 +462,7 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
        uint32_t at = ctx->at;
                {% if this_stream_ops.ev_header_ops %}
 
-       /* add header size */
+       /* Add header size */
        {
                        {% for op in this_stream_ops.ev_header_ops %}
                {{ op.size_str(stream_type=stream_type) | indent_tab(2) }}
@@ -472,7 +472,7 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
                {% endif %}
                {% if this_stream_ops.ev_common_ctx_ops %}
 
-       /* add common context size */
+       /* Add common context size */
        {
                        {% for op in this_stream_ops.ev_common_ctx_ops %}
                {{ op.size_str(stream_type=stream_type) | indent_tab(2) }}
@@ -482,7 +482,7 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
                {% endif %}
                {% if this_ev_ops.spec_ctx_ops %}
 
-       /* add specific context size */
+       /* Add specific context size */
        {
                        {% for op in this_ev_ops.spec_ctx_ops %}
                {{ op.size_str(stream_type=stream_type, ev_type=ev_type) | indent_tab(2) }}
@@ -492,7 +492,7 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
                {% endif %}
                {% if this_ev_ops.payload_ops %}
 
-       /* add payload size */
+       /* Add payload size */
        {
                        {% for op in this_ev_ops.payload_ops %}
                {{ op.size_str(stream_type=stream_type, ev_type=ev_type) | indent_tab(2) }}
@@ -514,7 +514,7 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
        uint32_t ev_size;
 
                {% if def_clk_type %}
-       /* save time */
+       /* Save time */
        sctx->cur_last_event_ts = ctx->cbs.{{ def_clk_type.name }}_clock_get_value(ctx->data);
 
                {% endif %}
@@ -523,30 +523,30 @@ static uint32_t _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(void * const
                return;
        }
 
-       /* we can alter the packet */
+       /* We can alter the packet */
        ctx->in_tracing_section = 1;
 
-       /* compute event size */
+       /* Compute event size */
                {% set ev_common_ctx_params = macros.ft_call_params(root_ft_prefixes.ECC, stream_type.event_common_context_field_type) %}
                {% set spec_ctx_params = macros.ft_call_params(root_ft_prefixes.SC, ev_type.specific_context_field_type) %}
                {% set payload_params = macros.ft_call_params(root_ft_prefixes.P, ev_type.payload_field_type) %}
                {% set params %}{{ ev_common_ctx_params }}{{ spec_ctx_params }}{{ payload_params }}{% endset %}
        ev_size = _ev_size_{{ stream_type.name }}_{{ ev_type.name }}(_TO_VOID_PTR(ctx){{ params }});
 
-       /* do we have enough space to serialize? */
+       /* Is there enough space to serialize? */
        if (!_reserve_ev_space(_TO_VOID_PTR(ctx), ev_size)) {
                /* no: forget this */
                ctx->in_tracing_section = 0;
                return;
        }
 
-       /* serialize event */
+       /* Serialize event */
        _serialize_ev_{{ stream_type.name }}_{{ ev_type.name }}(_TO_VOID_PTR(ctx){{ params }});
 
-       /* commit event */
+       /* Commit event */
        _commit_ev(_TO_VOID_PTR(ctx));
 
-       /* not tracing anymore */
+       /* Not tracing anymore */
        ctx->in_tracing_section = 0;
 }
        {% endfor %}
index b6f18e2fd53b00ba10e4b077a4d41e5f8cef68ad..c123cdae23ec5212b69e46ff9badf62c152b8f37 100644 (file)
@@ -75,68 +75,68 @@ void {{ prefix }}enable_tracing(void *ctx, int enable);
 struct {{ prefix }}platform_callbacks {
 {% set clk_types = trace_type.clock_types %}
 {% if clk_types %}
-       /* clock callbacks */
+       /* Clock callbacks */
        {% for clk_type in clk_types | sort %}
        {{ cg_opts.clock_type_c_types[clk_type] }} (*{{ clk_type.name }}_clock_get_value)(void *);
        {% endfor %}
 
 {% endif %}
-       /* is back-end full? */
+       /* Is the back-end full? */
        int (*is_backend_full)(void *);
 
-       /* open packet */
+       /* Open packet */
        void (*open_packet)(void *);
 
-       /* close packet */
+       /* Close packet */
        void (*close_packet)(void *);
 };
 
-/* common barectf context */
+/* Common barectf context */
 struct {{ prefix }}ctx {
-       /* platform callbacks */
+       /* Platform callbacks */
        struct {{ prefix }}platform_callbacks cbs;
 
-       /* platform data (passed to callbacks) */
+       /* Platform data (passed to callbacks) */
        void *data;
 
-       /* output buffer (will contain a CTF binary packet) */
+       /* Output buffer (will contain a CTF binary packet) */
        uint8_t *buf;
 
-       /* packet's total size (bits) */
+       /* Packet's total size (bits) */
        uint32_t packet_size;
 
-       /* packet's content size (bits) */
+       /* Packet's content size (bits) */
        uint32_t content_size;
 
-       /* current position from beginning of packet (bits) */
+       /* Current position from beginning of packet (bits) */
        uint32_t at;
 
-       /* size of packet header + context fields (content offset) */
+       /* Size of packet header + context fields (content offset) */
        uint32_t off_content;
 
-       /* discarded event counter */
+       /* Discarded event counter */
        uint32_t events_discarded;
 
-       /* current packet is open? */
+       /* Current packet is open? */
        int packet_is_open;
 
-       /* in tracing code? */
+       /* In tracing code? */
        volatile int in_tracing_section;
 
-       /* tracing is enabled? */
+       /* Tracing is enabled? */
        volatile int is_tracing_enabled;
 
-       /* use current/last event time when opening/closing packets */
+       /* Use current/last event time when opening/closing packets */
        int use_cur_last_event_ts;
 };
 
 {% for stream_type in trace_type.stream_types | sort %}
-/* context for stream type `{{ stream_type.name }}` */
+/* Context for stream type `{{ stream_type.name }}` */
 struct {{ prefix }}{{ stream_type.name }}_ctx {
-       /* parent */
+       /* Parent */
        struct {{ prefix }}ctx parent;
 
-       /* config-specific members follow */
+       /* Config-specific members follow */
        {% if trace_type._pkt_header_ft %}
                {% for member_name in trace_type._pkt_header_ft.members %}
        uint32_t off_ph_{{ member_name }};
index 51ba42dec813d28fcc959e8c3aa9d7ea532aae83..ef93bb71130ffd2ebe185cf8672590805a95c251 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% import 'common.j2' as common %}
 {% import 'c/common.j2' as c_common %}
-/* close packet for stream type `{{ stream_type.name }}` */
+/* Close packet for stream type `{{ stream_type.name }}` */
 void {{ common.prefix }}{{ stream_type.name }}_close_packet(struct {{ common.prefix }}{{ stream_type.name }}_ctx *{{ c_common.const_ptr_str(const_params) }}sctx)
index c7a1405aa02c83b3c580d968336739a70fc7207f..f8409499ad9b45dc73c20bacd36267ce24c523f8 100644 (file)
@@ -24,7 +24,7 @@
  #}
 {% import 'common.j2' as common %}
 {% import 'c/common.j2' as c_common %}
-/* initialize context */
+/* Initialize context */
 void {{ common.prefix }}init(void *vctx,
        uint8_t *{{ c_common.const_ptr_str(const_params) }}buf, {{ c_common.const_str(const_params) }}uint32_t buf_size,
        const struct {{ common.prefix }}platform_callbacks cbs, void *{{ c_common.const_ptr_str(const_params) }}data)
index 60cd3a4aa3edaff0409f9b391b6f86828f3b2127..fc7e7ec09ed6bd77e32b7415ef6765420e9d0ece 100644 (file)
@@ -24,6 +24,6 @@
  #}
 {% import 'common.j2' as common %}
 {% import 'c/common.j2' as c_common %}
-/* open packet for stream type `{{ stream_type.name }}` */
+/* Open packet for stream type `{{ stream_type.name }}` */
 void {{ common.prefix }}{{ stream_type.name }}_open_packet(
        struct {{ common.prefix }}{{ stream_type.name }}_ctx *{{ c_common.const_ptr_str(const_params) }}sctx{{ stream_type | open_func_params_str(const_params) }})
index e773aa74577c873f013ffd028f538911ac034c55..cd3be356f18a69861364f61aa3555e37958e089b 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% set c_type = op.ft | ft_c_type %}
 {% set src = 'ev_type_id' %}
-/* write event type ID field */
+/* Write event type ID field */
 {% include 'c/serialize-write-bit-array-statements.j2' %}
index 8b7c726c59e7f8660ce0bac98bdb9a8f5cf95c9e..8dfd56bccd5dd5b012642411d7da57536eee5f08 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% set c_type = op.ft | ft_c_type %}
 {% set src = '0xc1fc1fc1UL' %}
-/* write magic number field */
+/* Write magic number field */
 {% include 'c/serialize-write-bit-array-statements.j2' %}
index 0022e44fa01a5ba54a69fa8a09f775c880b3ebf1..6f930f4e2459e123bdf648dc3a03823647e90a47 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% set c_type = op.ft | ft_c_type %}
 {% set src = 'ctx->packet_size' %}
-/* write packet total size field */
+/* Write packet total size field */
 {% include 'c/serialize-write-bit-array-statements.j2' %}
index 5a5e332c5059dfc27c2a5ea804bf6db938eda379..1cb6de8ef8b0e64745588a0e15818b1e72e55f8e 100644 (file)
@@ -23,6 +23,6 @@
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  #}
 {% import 'c/common.j2' as c_common %}
-/* do not write `{{ op.top_name }}` field; save its offset */
+/* Do not write `{{ op.top_name }}` field; save its offset */
 sctx->off_{{ c_common.op_src(op) }} = ctx->at;
 ctx->at += {{ op.ft.size }};
index 12fd9c693ad2abf8de1a42997d95d659d5e121ec..ad80a4e72ad8cdb54b64183d8b5f45489f9972ff 100644 (file)
@@ -22,4 +22,4 @@
  # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  #}
-/* write `{{ op.top_name }}` field */
+/* Write `{{ op.top_name }}` field */
index 4384efb0837cc44917ae511c4bf0b4610dfa268c..ea9eb441ac48f463ae2f177ced54509b2f2af4a1 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% set c_type = op.ft | ft_c_type %}
 {% set src = stream_type.id %}
-/* write stream type ID field */
+/* Write stream type ID field */
 {% include 'c/serialize-write-bit-array-statements.j2' %}
index e4ade0c5d228bde9e2805333f6d9777588435260..f03209b45ddbebb37163ab1b30e98d763df3e6d3 100644 (file)
@@ -22,7 +22,7 @@
  # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  #}
-/* write UUID */
+/* Write UUID */
 {
        static const uint8_t uuid[] = {
 {% for row in cfg.trace.type.uuid.bytes | batch(4) %}
index 676709eed7c6a14ab14a9ff38447e8418582858a..2cc8dc9f3e1aa6053866feaef56be0b8cff1a86c 100644 (file)
@@ -22,5 +22,5 @@
  # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  #}
-/* add `{{ op.top_name }}` bit array field's size */
+/* Add `{{ op.top_name }}` bit array field's size */
 at += {{ op.ft.size }};
index e438c7a53e6faeeaee89350ba853cbb9c48238cd..155438d25af81cb0f2766d30c0fc5eff945fa396 100644 (file)
@@ -23,5 +23,5 @@
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  #}
 {% import 'c/common.j2' as c_common %}
-/* add `{{ op.top_name }}` string field's size */
+/* Add `{{ op.top_name }}` string field's size */
 at += _BYTES_TO_BITS(strlen({{ c_common.op_src(op) }}) + 1);
index a25cd67bb29d2b13c75782439aa271fc01132e43..806f2fee8e9005dd0e91f2660f01e42e8d607d6e 100644 (file)
@@ -24,5 +24,5 @@
  #}
 {% import 'common.j2' as common %}
 {% import 'c/common.j2' as c_common %}
-/* trace (stream type `{{ stream_type.name }}`, event type `{{ ev_type.name }}`) */
+/* Trace (stream type `{{ stream_type.name }}`, event type `{{ ev_type.name }}`) */
 void {{ common.prefix }}{{ stream_type.name }}_trace_{{ ev_type.name }}(struct {{ common.prefix }}{{ stream_type.name }}_ctx *{{ c_common.const_ptr_str(const_params) }}sctx{{ (stream_type, ev_type) | trace_func_params_str(const_params) }})
This page took 0.036102 seconds and 4 git commands to generate.