Skip to content

Commit

Permalink
Merge pull request #1073 from astrogeco/fix-os-select-doxy-warning
Browse files Browse the repository at this point in the history
HOTFIX:2021-06-15, Add missing OS_Select param doc
  • Loading branch information
astrogeco authored Jun 14, 2021
2 parents 79fb216 + ae924d8 commit ee3f67d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/os/inc/osapi-select.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ typedef enum
*
* @param[in,out] ReadSet Set of handles to check/wait to become readable
* @param[in,out] WriteSet Set of handles to check/wait to become writable
* @param[in] msecs Indicates the timeout. Positive values will wait up to that many milliseconds. Zero will not wait
* (poll). Negative values will wait forever (pend)
*
* @return Execution status, see @ref OSReturnCodes
* @retval #OS_SUCCESS If any handle in the ReadSet or WriteSet is readable or writable, respectively
Expand Down Expand Up @@ -124,6 +126,8 @@ int32 OS_SelectMultiple(OS_FdSet *ReadSet, OS_FdSet *WriteSet, int32 msecs);
*
* @param[in] objid The handle ID to select on
* @param[in,out] StateFlags State flag(s) (readable or writable) @nonnull
* @param[in] msecs Indicates the timeout. Positive values will wait up to that many milliseconds. Zero will not wait
* (poll). Negative values will wait forever (pend)
*
* @return Execution status, see @ref OSReturnCodes
* @retval #OS_SUCCESS If the handle is readable and/or writable, as requested
Expand Down

0 comments on commit ee3f67d

Please sign in to comment.