-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
doc: Fix sys_mutex and futex missing documentation #31855
Merged
nashif
merged 1 commit into
zephyrproject-rtos:master
from
laurenmurphyx64:fix_sys_mutex_and_futex_docs
Feb 2, 2021
Merged
doc: Fix sys_mutex and futex missing documentation #31855
nashif
merged 1 commit into
zephyrproject-rtos:master
from
laurenmurphyx64:fix_sys_mutex_and_futex_docs
Feb 2, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Adds API reference for sys_mutex and futex to mutex documentation, adds Doxygen documentation for SYS_MUTEX_DEFINE and fixes typo in futex documentation. Fixes zephyrproject-rtos#27829 Signed-off-by: Lauren Murphy <[email protected]>
4496012
to
fb3719e
Compare
nashif
approved these changes
Feb 2, 2021
dcpleung
approved these changes
Feb 2, 2021
jenmwms
reviewed
Feb 2, 2021
@@ -166,3 +166,25 @@ API Reference | |||
|
|||
.. doxygengroup:: mutex_apis | |||
:project: Zephyr | |||
|
|||
Futex API Reference | |||
********************************* |
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.
Please check format - I think the underline (*) needs to be same length as the title line above it.
jenmwms
reviewed
Feb 2, 2021
:project: Zephyr | ||
|
||
User Mode Mutex API Reference | ||
********************************* |
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.
same comment on format of underline (*) length
laurenmurphyx64
added a commit
to laurenmurphyx64/zephyr
that referenced
this pull request
Feb 4, 2021
Fixes typos in mutex documentation accidentally introduced by zephyrproject-rtos#31855. Signed-off-by: Lauren Murphy <[email protected]>
nashif
pushed a commit
that referenced
this pull request
Feb 4, 2021
Fixes typos in mutex documentation accidentally introduced by #31855. Signed-off-by: Lauren Murphy <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: API
Changes to public APIs
area: Base OS
Base OS Library (lib/os)
area: Documentation
area: Kernel
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds API reference for sys_mutex and futex to mutex documentation,
adds Doxygen documentation for SYS_MUTEX_DEFINE and fixes typo in
futex documentation.
Fixes #27829
Signed-off-by: Lauren Murphy [email protected]