aboutsummaryrefslogtreecommitdiffstats
path: root/exec
diff options
context:
space:
mode:
authorPo Lu2023-05-05 10:57:26 +0800
committerPo Lu2023-05-05 10:57:26 +0800
commitd5414f1797467b00ca4f75faf39c774b150fc509 (patch)
tree5234e24c58ff887cba6870087fc78be359b445df /exec
parentdaccdf7e6d4bc42ffe8ffbc9db137bd44b073343 (diff)
downloademacs-d5414f1797467b00ca4f75faf39c774b150fc509.tar.gz
emacs-d5414f1797467b00ca4f75faf39c774b150fc509.zip
Update Android port
* exec/trace.c (SYS_SECCOMP): Define when not present.
Diffstat (limited to 'exec')
-rw-r--r--exec/trace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/exec/trace.c b/exec/trace.c
index f9dd4d419f4..b765b5cffa4 100644
--- a/exec/trace.c
+++ b/exec/trace.c
@@ -46,6 +46,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
46#include <sys/uio.h> /* for process_vm_readv */ 46#include <sys/uio.h> /* for process_vm_readv */
47#endif /* HAVE_SYS_UIO_H */ 47#endif /* HAVE_SYS_UIO_H */
48 48
49#ifndef SYS_SECCOMP
50#define SYS_SECCOMP 1
51#endif /* SYS_SECCOMP */
52
49 53
50 54
51/* Program tracing functions. 55/* Program tracing functions.