Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
ce36f0d3
Unverified
Commit
ce36f0d3
authored
6 years ago
by
Hauke Petersen
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #9338 from kaspar030/fix_mbox_dox
core/mbox: doc typo fixes
parents
0fb39f91
2212850f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/include/mbox.h
+6
-6
6 additions, 6 deletions
core/include/mbox.h
with
6 additions
and
6 deletions
core/include/mbox.h
+
6
−
6
View file @
ce36f0d3
...
@@ -66,7 +66,7 @@ static inline void mbox_init(mbox_t *mbox, msg_t *queue, unsigned int queue_size
...
@@ -66,7 +66,7 @@ static inline void mbox_init(mbox_t *mbox, msg_t *queue, unsigned int queue_size
/**
/**
* @brief Add message to mailbox
* @brief Add message to mailbox
*
*
* If the mailbox is full, this fuction will return right away.
* If the mailbox is full, this fu
n
ction will return right away.
*
*
* @internal
* @internal
*
*
...
@@ -82,7 +82,7 @@ int _mbox_put(mbox_t *mbox, msg_t *msg, int blocking);
...
@@ -82,7 +82,7 @@ int _mbox_put(mbox_t *mbox, msg_t *msg, int blocking);
/**
/**
* @brief Get message from mailbox
* @brief Get message from mailbox
*
*
* If the mailbox is empty, this fuction will return right away.
* If the mailbox is empty, this fu
n
ction will return right away.
*
*
* @internal
* @internal
*
*
...
@@ -98,7 +98,7 @@ int _mbox_get(mbox_t *mbox, msg_t *msg, int blocking);
...
@@ -98,7 +98,7 @@ int _mbox_get(mbox_t *mbox, msg_t *msg, int blocking);
/**
/**
* @brief Add message to mailbox
* @brief Add message to mailbox
*
*
* If the mailbox is full, this fuction will block until space becomes
* If the mailbox is full, this fu
n
ction will block until space becomes
* available.
* available.
*
*
* @param[in] mbox ptr to mailbox to operate on
* @param[in] mbox ptr to mailbox to operate on
...
@@ -112,7 +112,7 @@ static inline void mbox_put(mbox_t *mbox, msg_t *msg)
...
@@ -112,7 +112,7 @@ static inline void mbox_put(mbox_t *mbox, msg_t *msg)
/**
/**
* @brief Add message to mailbox
* @brief Add message to mailbox
*
*
* If the mailbox is full, this fuction will return right away.
* If the mailbox is full, this fu
n
ction will return right away.
*
*
* @param[in] mbox ptr to mailbox to operate on
* @param[in] mbox ptr to mailbox to operate on
* @param[in] msg ptr to message that will be copied into mailbox
* @param[in] msg ptr to message that will be copied into mailbox
...
@@ -128,7 +128,7 @@ static inline int mbox_try_put(mbox_t *mbox, msg_t *msg)
...
@@ -128,7 +128,7 @@ static inline int mbox_try_put(mbox_t *mbox, msg_t *msg)
/**
/**
* @brief Get message from mailbox
* @brief Get message from mailbox
*
*
* If the mailbox is empty, this fuction will block until a message becomes
* If the mailbox is empty, this fu
n
ction will block until a message becomes
* available.
* available.
*
*
* @param[in] mbox ptr to mailbox to operate on
* @param[in] mbox ptr to mailbox to operate on
...
@@ -142,7 +142,7 @@ static inline void mbox_get(mbox_t *mbox, msg_t *msg)
...
@@ -142,7 +142,7 @@ static inline void mbox_get(mbox_t *mbox, msg_t *msg)
/**
/**
* @brief Get message from mailbox
* @brief Get message from mailbox
*
*
* If the mailbox is empty, this fuction will return right away.
* If the mailbox is empty, this fu
n
ction will return right away.
*
*
* @param[in] mbox ptr to mailbox to operate on
* @param[in] mbox ptr to mailbox to operate on
* @param[in] msg ptr to storage for retrieved message
* @param[in] msg ptr to storage for retrieved message
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment