Details
- Reviewers
tcberner fernape - Commits
- rP568563: textproc/git-chglog: Update to 0.11.2
QA:
- portlint: OK (looks fine).
- testport: OK (poudriere: 12.2-RELEASE-p4, amd64/i386).
MFH: No (Prior breaking-changes).
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Do we need a g_free_event as well? In your case in geom_disk you are going to consume it always, but my other case in g_vfs_done() is optional and I will need to be able to free it in g_vfs_close() when a g_vfs object is freed without having its underlying storage destroyed.
You could also perhaps forward declare 'struct g_event' in geom.h while leaving it opaque so that you could have static type-checking for the new functions (g_alloc_event, g_free_event, g_post_event_storage).