Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scripts/core/module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,13 @@ params:
desc: "[in] handle of the kernel object"
- type: "uint32_t*"
name: pSize
desc: "[in,out] pointer to size of string in bytes."
desc: "[in,out] pointer to size of string in bytes, including null-terminating character."
- type: "char**"
name: pString
desc: "[in,out] pointer to null-terminated string, whose lifetime is tied to the kernel object, where kernel source attributes are separated by space."
desc: |
[in,out][optional] pointer to application-managed character array (string data).
If NULL, the string length of the kernel source attributes, including a null-terminating character, is returned in pSize.
Otherwise, pString must point to valid application memory that is greater than or equal to *pSize bytes in length, and on return the pointed-to string will contain a space-separated list of kernel source attributes.
--- #--------------------------------------------------------------------------
type: enum
desc: "Supported Cache Config flags"
Expand Down