| 1 | // Copyright (C) Microsoft Corporation. All rights reserved. |
| 2 | |
| 3 | // This file defines all the seccomp structures and constants that aren't available in the sdk yet |
| 4 | |
| 5 | #pragma once |
| 6 | |
| 7 | #include <unistd.h> |
| 8 | |
| 9 | // From include\asm\unist_32.h |
| 10 | // Read socketcall.2, there is no socketcall systemcall on x86_64 systems. |
| 11 | // You will not get this value with the standard defines. |
| 12 | #define I386_NR_socketcall (102) |
| 13 | #define ARMV7_NR_bind (282) |
| 14 | #define ARMV7_NR_listen (284) |