A previous fix for #42 did a scrub of the global variables, but there are still several instances of localized identifier names that do not follow the convention. These should also be fixed (easy search and replace).
- tick_args_t
- container_of
- chan_action_fn_t
- bool_arg_t
- susp_res_arg_t
- bool_msg_arg_t
- trans_seq_arg_t
- trav_arg_t
- traverse_all_args_t
- priority_arg_t
Most of these are for local helpers that were previously file-scoped (static) but after #137 have been moved to a header and made non-static for unit testing improvements. So these should now be renamed to follow the convention since they are technically global scope, even if use is still limited to one unit.
A previous fix for #42 did a scrub of the global variables, but there are still several instances of localized identifier names that do not follow the convention. These should also be fixed (easy search and replace).
Most of these are for local helpers that were previously file-scoped (static) but after #137 have been moved to a header and made non-static for unit testing improvements. So these should now be renamed to follow the convention since they are technically global scope, even if use is still limited to one unit.