diff options
| author | 2023-11-19 11:21:53 +0200 | |
|---|---|---|
| committer | 2023-11-25 00:47:35 -0500 | |
| commit | 6de2edcca1624982e99a72741d4fa289dc9d7551 (patch) | |
| tree | 8c355b39a6f71e333ccc2f929816ce96e40d3f2c /src/common/signal_chain.h | |
| parent | android: Add cpu bakend gui toggle (diff) | |
| download | yuzu-6de2edcca1624982e99a72741d4fa289dc9d7551.tar.gz yuzu-6de2edcca1624982e99a72741d4fa289dc9d7551.tar.xz yuzu-6de2edcca1624982e99a72741d4fa289dc9d7551.zip | |
Address some review comments
Diffstat (limited to 'src/common/signal_chain.h')
| -rw-r--r-- | src/common/signal_chain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/signal_chain.h b/src/common/signal_chain.h index e3bfe6882..8d06a1bd1 100644 --- a/src/common/signal_chain.h +++ b/src/common/signal_chain.h | |||
| @@ -10,8 +10,8 @@ | |||
| 10 | namespace Common { | 10 | namespace Common { |
| 11 | 11 | ||
| 12 | // Android's ART overrides sigaction with its own wrapper. This is problematic for SIGSEGV | 12 | // Android's ART overrides sigaction with its own wrapper. This is problematic for SIGSEGV |
| 13 | // in particular, because ARTs handler access TPIDR_EL0, so this extracts the libc version | 13 | // in particular, because ART's handler accesses tpidr_el0, which conflicts with NCE. |
| 14 | // and calls it directly. | 14 | // This extracts the libc symbol and calls it directly. |
| 15 | int SigAction(int signum, const struct sigaction* act, struct sigaction* oldact); | 15 | int SigAction(int signum, const struct sigaction* act, struct sigaction* oldact); |
| 16 | 16 | ||
| 17 | } // namespace Common | 17 | } // namespace Common |