diff options
author | Elliott Hughes <enh@google.com> | 2020-01-16 15:23:58 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2020-01-16 15:23:58 -0800 |
commit | 91e3bd1f334a2fa570109390bb2373d314bc01cd (patch) | |
tree | 06f085bf4c4a64105720c362aac76bad87fb2733 | |
parent | 3779d6da40fc90b989b343c1b0d5b22611226b43 (diff) |
Document the changed fdsan default from Q to R.
Change-Id: I98c50232184a8bf929579a7a30460dc33555475e
-rw-r--r-- | docs/status.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/status.md b/docs/status.md index a1d5332fa..547066882 100644 --- a/docs/status.md +++ b/docs/status.md @@ -49,6 +49,10 @@ New libc functions in R (API level 30): * `renameat2` (GNU extension). * `pthread_cond_clockwait`/`pthread_mutex_clocklock`/`pthread_rwlock_clockrdlock`/`pthread_rwlock_clockwrlock`/`sem_clockwait` +New libc behavior in R (API level 30): + * [fdsan](fdsan.md) now aborts when it detects common file descriptor errors, + rather than just logging. + New libc functions in Q (API level 29): * `timespec_get` (C11 `<time.h>` addition) * `reallocarray` (BSD/GNU extension in `<malloc.h>` and `<stdlib.h>`) @@ -68,7 +72,7 @@ New libc behavior in Q (API level 29): is unchanged. * Support in strptime for `%F`, `%G`, `%g`, `%P`, `%u`, `%V`, and `%v`. (strftime already supported them all.) - * [fdsan](fdsan.md) detects common file descriptor errors at runtime. + * [fdsan](fdsan.md) detects and logs common file descriptor errors at runtime. New libc functions in P (API level 28): * `aligned_alloc` |