summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-02-13 22:23:17 -0800
committerElliott Hughes <enh@google.com>2020-02-13 22:25:02 -0800
commit56a9fda6103cd3b903dffa013dc1532fc33d31ba (patch)
tree5b7a5b38bd0b7436eb69ed89848a19e367c73d35 /docs
parentfb28c278b726a2281cef89cf25b5e9a2a5503b31 (diff)
Remove dead code.
We haven't built any of this for years. Test: treehugger Change-Id: I3f8a85e9530af68587f47931d850eb60631a9481
Diffstat (limited to 'docs')
-rw-r--r--docs/32-bit-abi.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/32-bit-abi.md b/docs/32-bit-abi.md
index 0ea94d48c..81afd14c9 100644
--- a/docs/32-bit-abi.md
+++ b/docs/32-bit-abi.md
@@ -65,11 +65,11 @@ in the 64-bit ABI even though they're identical to the non-`64` names.
## `sigset_t` is too small for real-time signals
-On 32-bit Android, `sigset_t` is too small for ARM and x86 (but correct for
-MIPS). This means that there is no support for real-time signals in 32-bit
-code. Android P (API level 28) adds `sigset64_t` and a corresponding function
-for every function that takes a `sigset_t` (so `sigprocmask64` takes a
-`sigset64_t` where `sigprocmask` takes a `sigset_t`).
+On 32-bit Android, `sigset_t` is too small for ARM and x86. This means that
+there is no support for real-time signals in 32-bit code. Android P (API
+level 28) adds `sigset64_t` and a corresponding function for every function
+that takes a `sigset_t` (so `sigprocmask64` takes a `sigset64_t` where
+`sigprocmask` takes a `sigset_t`).
On 32-bit Android, `struct sigaction` is also too small because it contains
a `sigset_t`. We also offer a `struct sigaction64` and `sigaction64` function