Remove const on all side_arg
[libside.git] / include / side / instrumentation-c-api.h
index 048dfea0c37dd859f76c1c6e636b96d47a3a23dc..11ead8f3f1e74d43ad753291772b4ee1a6144161 100644 (file)
 #define side_arg_struct(_side_type)    { .type = SIDE_ENUM_INIT(SIDE_TYPE_STRUCT), .u = { .side_static = { .side_struct = SIDE_PTR_INIT(_side_type) } } }
 
 #define side_arg_define_variant(_identifier, _selector_val, _option) \
-       const struct side_arg_variant _identifier = { \
+       struct side_arg_variant _identifier = { \
                .selector = _selector_val, \
                .option = _option, \
        }
        }
 
 #define side_arg_dynamic_define_vec(_identifier, _sav, _attr...) \
-       const struct side_arg _identifier##_vec[] = { _sav }; \
+       struct side_arg _identifier##_vec[] = { _sav }; \
        const struct side_arg_dynamic_vla _identifier = { \
                .sav = SIDE_PTR_INIT(_identifier##_vec), \
                .attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
        }
 
 #define side_arg_dynamic_define_struct(_identifier, _struct_fields, _attr...) \
-       const struct side_arg_dynamic_field _identifier##_fields[] = { _struct_fields }; \
+       struct side_arg_dynamic_field _identifier##_fields[] = { _struct_fields }; \
        const struct side_arg_dynamic_struct _identifier = { \
                .fields = SIDE_PTR_INIT(_identifier##_fields), \
                .attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
        }
 
 #define side_arg_define_vec(_identifier, _sav) \
-       const struct side_arg _identifier##_vec[] = { _sav }; \
+       struct side_arg _identifier##_vec[] = { _sav }; \
        const struct side_arg_vec _identifier = { \
                .sav = SIDE_PTR_INIT(_identifier##_vec), \
                .len = SIDE_ARRAY_SIZE(_identifier##_vec), \
 
 #define side_event_call(_identifier, _sav) \
        { \
-               const struct side_arg side_sav[] = { _sav }; \
+               struct side_arg side_sav[] = { _sav }; \
                const struct side_arg_vec side_arg_vec = { \
                        .sav = SIDE_PTR_INIT(side_sav), \
                        .len = SIDE_ARRAY_SIZE(side_sav), \
 
 #define side_event_call_variadic(_identifier, _sav, _var_fields, _attr...) \
        { \
-               const struct side_arg side_sav[] = { _sav }; \
+               struct side_arg side_sav[] = { _sav }; \
                const struct side_arg_vec side_arg_vec = { \
                        .sav = SIDE_PTR_INIT(side_sav), \
                        .len = SIDE_ARRAY_SIZE(side_sav), \
                }; \
-               const struct side_arg_dynamic_field side_fields[] = { _var_fields }; \
+               struct side_arg_dynamic_field side_fields[] = { _var_fields }; \
                const struct side_arg_dynamic_struct var_struct = { \
                        .fields = SIDE_PTR_INIT(side_fields), \
                        .attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
This page took 0.023205 seconds and 4 git commands to generate.