Merge "Update comments on native_handle_create."

This commit is contained in:
TreeHugger Robot 2019-03-07 09:20:33 +00:00 committed by Android (Google) Code Review
commit 46f753a320
1 changed files with 4 additions and 3 deletions

View File

@ -69,10 +69,11 @@ native_handle_t* native_handle_init(char* storage, int numFds, int numInts);
/*
* native_handle_create
*
*
* creates a native_handle_t and initializes it. must be destroyed with
* native_handle_delete().
*
* native_handle_delete(). Note that numFds must be <= NATIVE_HANDLE_MAX_FDS,
* numInts must be <= NATIVE_HANDLE_MAX_INTS, and both must be >= 0.
*
*/
native_handle_t* native_handle_create(int numFds, int numInts);