The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 28 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 29 | #ifndef _SIGNAL_H_ |
| 30 | #define _SIGNAL_H_ |
| 31 | |
Josh Gao | 16016df | 2016-11-07 18:27:16 -0800 | [diff] [blame] | 32 | #include <sys/cdefs.h> |
| 33 | #include <sys/types.h> |
| 34 | |
Raghu Gandham | 93e7b9f | 2014-06-25 17:58:48 -0700 | [diff] [blame] | 35 | #include <asm/sigcontext.h> |
Elliott Hughes | 5704c42 | 2016-01-25 18:06:24 -0800 | [diff] [blame] | 36 | #include <bits/pthread_types.h> |
Elliott Hughes | 23415fc | 2018-02-13 19:09:04 -0800 | [diff] [blame] | 37 | #include <bits/signal_types.h> |
Elliott Hughes | 5704c42 | 2016-01-25 18:06:24 -0800 | [diff] [blame] | 38 | #include <bits/timespec.h> |
Dan Albert | 75ef63d | 2014-11-21 00:18:07 -0800 | [diff] [blame] | 39 | #include <limits.h> |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 40 | |
Elliott Hughes | 26a8eb5 | 2014-09-12 20:04:40 -0700 | [diff] [blame] | 41 | #include <sys/ucontext.h> |
| 42 | #define __BIONIC_HAVE_UCONTEXT_T |
| 43 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 44 | __BEGIN_DECLS |
| 45 | |
Greg Hackmann | 5375bf6 | 2016-02-29 12:35:33 -0800 | [diff] [blame] | 46 | /* The kernel headers define SIG_DFL (0) and SIG_IGN (1) but not SIG_HOLD, since |
| 47 | * SIG_HOLD is only used by the deprecated SysV signal API. |
| 48 | */ |
Elliott Hughes | 5470c18 | 2016-07-22 11:36:17 -0700 | [diff] [blame] | 49 | #define SIG_HOLD __BIONIC_CAST(reinterpret_cast, sighandler_t, 2) |
Greg Hackmann | 5375bf6 | 2016-02-29 12:35:33 -0800 | [diff] [blame] | 50 | |
Elliott Hughes | 0990d4f | 2014-04-30 09:45:40 -0700 | [diff] [blame] | 51 | /* We take a few real-time signals for ourselves. May as well use the same names as glibc. */ |
| 52 | #define SIGRTMIN (__libc_current_sigrtmin()) |
| 53 | #define SIGRTMAX (__libc_current_sigrtmax()) |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 54 | int __libc_current_sigrtmin(void); |
| 55 | int __libc_current_sigrtmax(void); |
Elliott Hughes | 0990d4f | 2014-04-30 09:45:40 -0700 | [diff] [blame] | 56 | |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 57 | extern const char* _Nonnull const sys_siglist[_NSIG]; |
| 58 | extern const char* _Nonnull const sys_signame[_NSIG]; /* BSD compatibility. */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 59 | |
Elliott Hughes | a0cd9bc | 2014-03-07 15:41:25 -0800 | [diff] [blame] | 60 | #define si_timerid si_tid /* glibc compatibility. */ |
| 61 | |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 62 | int sigaction(int __signal, const struct sigaction* _Nullable __new_action, struct sigaction* _Nullable __old_action); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 63 | |
| 64 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 65 | int sigaction64(int __signal, const struct sigaction64* _Nullable __new_action, struct sigaction64* _Nullable __old_action) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 66 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 67 | |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 68 | |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 69 | int siginterrupt(int __signal, int __flag); |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 70 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 71 | sighandler_t _Nonnull signal(int __signal, sighandler_t _Nullable __handler); |
| 72 | int sigaddset(sigset_t* _Nonnull __set, int __signal); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 73 | |
| 74 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 75 | int sigaddset64(sigset64_t* _Nonnull __set, int __signal) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 76 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 77 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 78 | int sigdelset(sigset_t* _Nonnull __set, int __signal); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 79 | |
| 80 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 81 | int sigdelset64(sigset64_t* _Nonnull __set, int __signal) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 82 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 83 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 84 | int sigemptyset(sigset_t* _Nonnull __set); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 85 | |
| 86 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 87 | int sigemptyset64(sigset64_t* _Nonnull __set) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 88 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 89 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 90 | int sigfillset(sigset_t* _Nonnull __set); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 91 | |
| 92 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 93 | int sigfillset64(sigset64_t* _Nonnull __set) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 94 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 95 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 96 | int sigismember(const sigset_t* _Nonnull __set, int __signal); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 97 | |
| 98 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 99 | int sigismember64(const sigset64_t* _Nonnull __set, int __signal) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 100 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 101 | |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 102 | |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 103 | int sigpending(sigset_t* _Nonnull __set); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 104 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 105 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| 106 | int sigpending64(sigset64_t* _Nonnull __set) __INTRODUCED_IN(28); |
| 107 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 108 | |
| 109 | int sigprocmask(int __how, const sigset_t* _Nullable __new_set, sigset_t* _Nullable __old_set); |
| 110 | |
| 111 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| 112 | int sigprocmask64(int __how, const sigset64_t* _Nullable __new_set, sigset64_t* _Nullable __old_set) __INTRODUCED_IN(28); |
| 113 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 114 | |
| 115 | int sigsuspend(const sigset_t* _Nonnull __mask); |
| 116 | |
| 117 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| 118 | int sigsuspend64(const sigset64_t* _Nonnull __mask) __INTRODUCED_IN(28); |
| 119 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 120 | |
| 121 | int sigwait(const sigset_t* _Nonnull __set, int* _Nonnull __signal); |
| 122 | |
| 123 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| 124 | int sigwait64(const sigset64_t* _Nonnull __set, int* _Nonnull __signal) __INTRODUCED_IN(28); |
| 125 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 126 | |
| 127 | |
| 128 | |
| 129 | #if __BIONIC_AVAILABILITY_GUARD(26) |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 130 | int sighold(int __signal) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 131 | __attribute__((__deprecated__("use sigprocmask() or pthread_sigmask() instead"))) |
Josh Gao | 2e8e5e6 | 2017-04-20 12:58:31 -0700 | [diff] [blame] | 132 | __INTRODUCED_IN(26); |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 133 | int sigignore(int __signal) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 134 | __attribute__((__deprecated__("use sigaction() instead"))) __INTRODUCED_IN(26); |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 135 | int sigpause(int __signal) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 136 | __attribute__((__deprecated__("use sigsuspend() instead"))) __INTRODUCED_IN(26); |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 137 | int sigrelse(int __signal) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 138 | __attribute__((__deprecated__("use sigprocmask() or pthread_sigmask() instead"))) |
Josh Gao | 2e8e5e6 | 2017-04-20 12:58:31 -0700 | [diff] [blame] | 139 | __INTRODUCED_IN(26); |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 140 | sighandler_t _Nonnull sigset(int __signal, sighandler_t _Nullable __handler) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 141 | __attribute__((__deprecated__("use sigaction() instead"))) __INTRODUCED_IN(26); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 142 | #endif /* __BIONIC_AVAILABILITY_GUARD(26) */ |
| 143 | |
Greg Hackmann | 5375bf6 | 2016-02-29 12:35:33 -0800 | [diff] [blame] | 144 | |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 145 | int raise(int __signal); |
| 146 | int kill(pid_t __pid, int __signal); |
| 147 | int killpg(int __pgrp, int __signal); |
Elliott Hughes | f106a39 | 2019-10-03 16:09:04 -0700 | [diff] [blame] | 148 | int tgkill(int __tgid, int __tid, int __signal); |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 149 | |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 150 | int sigaltstack(const stack_t* _Nullable __new_signal_stack, stack_t* _Nullable __old_signal_stack); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 151 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 152 | void psiginfo(const siginfo_t* _Nonnull __info, const char* _Nullable __msg); |
| 153 | void psignal(int __signal, const char* _Nullable __msg); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 154 | |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 155 | int pthread_kill(pthread_t __pthread, int __signal); |
Josh Gao | 726b63f | 2018-08-27 16:00:58 -0700 | [diff] [blame] | 156 | #if defined(__USE_GNU) |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 157 | |
| 158 | #if __BIONIC_AVAILABILITY_GUARD(29) |
Elliott Hughes | c0f4656 | 2018-11-09 15:38:52 -0800 | [diff] [blame] | 159 | int pthread_sigqueue(pthread_t __pthread, int __signal, const union sigval __value) __INTRODUCED_IN(29); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 160 | #endif /* __BIONIC_AVAILABILITY_GUARD(29) */ |
| 161 | |
Josh Gao | 726b63f | 2018-08-27 16:00:58 -0700 | [diff] [blame] | 162 | #endif |
| 163 | |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 164 | int pthread_sigmask(int __how, const sigset_t* _Nullable __new_set, sigset_t* _Nullable __old_set); |
Dan Albert | 75ef63d | 2014-11-21 00:18:07 -0800 | [diff] [blame] | 165 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 166 | #if __BIONIC_AVAILABILITY_GUARD(28) |
| 167 | int pthread_sigmask64(int __how, const sigset64_t* _Nullable __new_set, sigset64_t* _Nullable __old_set) __INTRODUCED_IN(28); |
| 168 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 169 | |
| 170 | |
| 171 | |
| 172 | #if __BIONIC_AVAILABILITY_GUARD(23) |
Elliott Hughes | faa7434 | 2017-08-11 17:34:44 -0700 | [diff] [blame] | 173 | int sigqueue(pid_t __pid, int __signal, const union sigval __value) __INTRODUCED_IN(23); |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 174 | int sigtimedwait(const sigset_t* _Nonnull __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN(23); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 175 | #endif /* __BIONIC_AVAILABILITY_GUARD(23) */ |
| 176 | |
| 177 | |
| 178 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 179 | int sigtimedwait64(const sigset64_t* _Nonnull __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 180 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 181 | |
| 182 | |
| 183 | #if __BIONIC_AVAILABILITY_GUARD(23) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 184 | int sigwaitinfo(const sigset_t* _Nonnull __set, siginfo_t* _Nullable __info) __INTRODUCED_IN(23); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 185 | #endif /* __BIONIC_AVAILABILITY_GUARD(23) */ |
| 186 | |
| 187 | |
| 188 | #if __BIONIC_AVAILABILITY_GUARD(28) |
zijunzhao | 38c5344 | 2023-02-09 20:28:18 +0000 | [diff] [blame] | 189 | int sigwaitinfo64(const sigset64_t* _Nonnull __set, siginfo_t* _Nullable __info) __INTRODUCED_IN(28); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 190 | #endif /* __BIONIC_AVAILABILITY_GUARD(28) */ |
| 191 | |
Yabin Cui | 6348160 | 2014-12-01 17:41:04 -0800 | [diff] [blame] | 192 | |
Elliott Hughes | 07d5209 | 2024-08-09 13:47:14 +0000 | [diff] [blame] | 193 | /** |
| 194 | * Buffer size suitable for any call to sig2str(). |
| 195 | */ |
| 196 | #define SIG2STR_MAX 32 |
| 197 | |
| 198 | /** |
Elliott Hughes | bbd39aa | 2024-08-13 20:59:16 +0000 | [diff] [blame] | 199 | * [sig2str(3)](https://man7.org/linux/man-pages/man3/sig2str.3.html) |
Elliott Hughes | 07d5209 | 2024-08-09 13:47:14 +0000 | [diff] [blame] | 200 | * converts the integer corresponding to SIGSEGV (say) into a string |
| 201 | * like "SEGV" (not including the "SIG" used in the constants). |
| 202 | * SIG2STR_MAX is a safe size to use for the buffer. |
| 203 | * |
| 204 | * Returns 0 on success, and returns -1 _without_ setting errno otherwise. |
| 205 | * |
| 206 | * Available since API level 36. |
| 207 | */ |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 208 | |
| 209 | #if __BIONIC_AVAILABILITY_GUARD(36) |
Elliott Hughes | 07d5209 | 2024-08-09 13:47:14 +0000 | [diff] [blame] | 210 | int sig2str(int __signal, char* _Nonnull __buf) __INTRODUCED_IN(36); |
| 211 | |
| 212 | /** |
Elliott Hughes | bbd39aa | 2024-08-13 20:59:16 +0000 | [diff] [blame] | 213 | * [str2sig(3)](https://man7.org/linux/man-pages/man3/str2sig.3.html) |
Elliott Hughes | 07d5209 | 2024-08-09 13:47:14 +0000 | [diff] [blame] | 214 | * converts a string like "SEGV" (not including the "SIG" used in the constants) |
| 215 | * into the integer corresponding to SIGSEGV. |
| 216 | * |
| 217 | * Returns 0 on success, and returns -1 _without_ setting errno otherwise. |
| 218 | * |
| 219 | * Available since API level 36. |
| 220 | */ |
| 221 | int str2sig(const char* _Nonnull __name, int* _Nonnull __signal) __INTRODUCED_IN(36); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 222 | #endif /* __BIONIC_AVAILABILITY_GUARD(36) */ |
| 223 | |
Elliott Hughes | 07d5209 | 2024-08-09 13:47:14 +0000 | [diff] [blame] | 224 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 225 | __END_DECLS |
| 226 | |
Elliott Hughes | 3e23591 | 2018-02-01 14:21:51 -0800 | [diff] [blame] | 227 | #endif |