Lines Matching refs:is
16 Some POSIX functionality is not supported by the Linux kernel, and
17 is guarded with tests for `__linux__`. Other functionality is not
40 locale supported is a UTF-8 C/POSIX locale. Most of the POSIX APIs are
48 [This is why we can't have safe cancellation points](https://lwn.net/Articles/683118/)
76 vector if the environment variable is set.
132 * `aligned_alloc` correctly verifies that `size` is a multiple of `alignment`.
133 * Using `%n` with the printf family is now reported as a FORTIFY failure.
136 is unchanged.
165 * Passing a null `FILE*` or `DIR*` to libc is now detected at runtime and
192 * Passing an invalid `pthread_t` to libc is now detected at runtime and
193 reported as a FORTIFY failure. Most commonly this is a result of confusing
333 If a destroyed `pthread_mutex_t` is passed to any of the mutex functions, apps
343 `pthread_t` is handled. For `pthread_detach`, `pthread_getcpuclockid`,
357 is still valid because a dead thread gets its thread struct unmapped
372 unjoinable thread, the fix is to stop marking it detached. If you're
376 inherently non-portable as-is.) The best alternative on Android is to
381 the tid may have been reused, but your code is inherently unsafe without
397 overrun is detected, the program is safely aborted as in this
409 More background information is available in our
414 The Android platform is built with `-D_FORTIFY_SOURCE=2`. Users of ndk-build
421 function is added.