Closed elBoberido closed 1 month ago
This PR adjust the naming convention for handle and pointer aliases for the C bindings
_ref_h
_h_ref
_mut_ptr
_ptr_mut
This makes is easier to find all occurrences of e.g. foo_ptr, independent of the mutability.
foo_ptr
Additionally, the _h_ref types are now just an alias to *const _h. This makes quite a few casts obsolet.
*const _h
SPDX-License-Identifier: Apache-2.0 OR MIT
iox2-123-introduce-posix-ipc-example
[#123] Add posix ipc example
task-list-completed
Relates to #210
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 78.96%. Comparing base (59b0d3d) to head (8bba75c). Report is 7 commits behind head on main.
59b0d3d
8bba75c
Notes for Reviewer
This PR adjust the naming convention for handle and pointer aliases for the C bindings
_ref_h
becomes_h_ref
_mut_ptr
becomes_ptr_mut
This makes is easier to find all occurrences of e.g.
foo_ptr
, independent of the mutability.Additionally, the
_h_ref
types are now just an alias to*const _h
. This makes quite a few casts obsolet.Pre-Review Checklist for the PR Author
SPDX-License-Identifier: Apache-2.0 OR MIT
iox2-123-introduce-posix-ipc-example
)[#123] Add posix ipc example
)task-list-completed
)Checklist for the PR Reviewer
Post-review Checklist for the PR Author
References
Relates to #210