eBPF for Windows
ebpf_execution_type.h
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation
2 // SPDX-License-Identifier: MIT
3 
4 #pragma once
5 
6 #ifdef __cplusplus
7 extern "C"
8 {
9 #endif
10 
11  typedef enum _ebpf_execution_type
12  {
18 
19 #ifdef __cplusplus
20 }
21 #endif
_ebpf_execution_type
Definition: ebpf_execution_type.h:12
@ EBPF_EXECUTION_NATIVE
Execute from native driver.
Definition: ebpf_execution_type.h:16
@ EBPF_EXECUTION_JIT
Execute in JIT-compiled mode.
Definition: ebpf_execution_type.h:14
@ EBPF_EXECUTION_ANY
Execute in JIT-compiled or interpreted mode, per system policy.
Definition: ebpf_execution_type.h:13
@ EBPF_EXECUTION_INTERPRET
Execute in interpreted mode.
Definition: ebpf_execution_type.h:15
enum _ebpf_execution_type ebpf_execution_type_t