Merge "Nullability check for signalfd module"

This commit is contained in:
Treehugger Robot 2023-03-13 17:38:38 +00:00 committed by Gerrit Code Review
commit 0a9fd0e77e

View file

@ -48,11 +48,11 @@ __BEGIN_DECLS
*
* Available since API level 18.
*/
int signalfd(int __fd, const sigset_t* __mask, int __flags) __INTRODUCED_IN(18);
int signalfd(int __fd, const sigset_t* _Nonnull __mask, int __flags) __INTRODUCED_IN(18);
/**
* Like signalfd() but allows setting a signal mask with RT signals even from a 32-bit process.
*/
int signalfd64(int __fd, const sigset64_t* __mask, int __flags) __INTRODUCED_IN(28);
int signalfd64(int __fd, const sigset64_t* _Nonnull __mask, int __flags) __INTRODUCED_IN(28);
__END_DECLS