| Index: sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h
|
| ===================================================================
|
| --- sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h (revision 275489)
|
| +++ sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h (working copy)
|
| @@ -40,7 +40,12 @@
|
| SIGSYSIoctlFailure(const struct arch_seccomp_data& args, void* aux);
|
| // The crashing address will be (pid & 0xFFF), where pid is the first
|
| // argument (and can be a tid).
|
| -intptr_t SIGSYSKillFailure(const struct arch_seccomp_data& args, void* aux);
|
| +SANDBOX_EXPORT intptr_t
|
| + SIGSYSKillFailure(const struct arch_seccomp_data& args, void* aux);
|
| +// The crashing address will be (op & 0xFFF), where op is the second
|
| +// argument.
|
| +SANDBOX_EXPORT intptr_t
|
| + SIGSYSFutexFailure(const struct arch_seccomp_data& args, void* aux);
|
|
|
| // Following four functions return substrings of error messages used
|
| // in the above four functions. They are useful in death tests.
|
| @@ -48,6 +53,7 @@
|
| SANDBOX_EXPORT const char* GetCloneErrorMessageContentForTests();
|
| SANDBOX_EXPORT const char* GetPrctlErrorMessageContentForTests();
|
| SANDBOX_EXPORT const char* GetIoctlErrorMessageContentForTests();
|
| +SANDBOX_EXPORT const char* GetFutexErrorMessageContentForTests();
|
|
|
| } // namespace sandbox.
|
|
|
|
|