-
Notifications
You must be signed in to change notification settings - Fork 3k
Change enet_tasklet declarations to match code #9034
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change enet_tasklet declarations to match code #9034
Conversation
Change enet_tasklet_network_init() and enet_tasklet_disconnect() declarations to match code. Also add document enet_tasklet.h functions
void enet_tasklet_init(void); | ||
uint8_t enet_tasklet_network_init(int8_t); | ||
|
||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These don't have the correct /**
Doxygen markers - but if you do add them, do also add \internal
commands, as I nothing here is public API .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Actually, you can probably put some sort of big group marker that says the whole thing is internal. Not sure of exact syntax)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually the other tasklet header files(thread_tasklet.h, nd_tasklet.h etc) are documented same way than enet_tasklet now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a new tracking issue to use doxygen but having it internal (we can keep it here as it is if its used in this module for now).
@KariHaapalehto, thank you for your changes. |
@melwee01 Please review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Address doxy format issues that kjbracey raised, and I think we're good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine with leaving this as-is - "looks like Doxygen, but isn't due to lack of markers", if that's what the rest of the files in that directory are doing. It's not public API, so shouldn't be appearing anywhere anyway.
CI started |
Test run: FAILEDSummary: 1 of 11 test jobs failed Failed test jobs:
|
2 failures, they are new but not related to this changeset, will restart |
Test restarted |
Description
Modify enet_tasklet.h.
Change enet_tasklet_network_init() and enet_tasklet_disconnect()
declarations to match code. Also add document enet_tasklet.h functions
Pull request type