/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/bpf/dummy.c
20 строк
337 B
Bruce Richardson
examples/bpf: move from test directory
26 фев 2019, 17:29
26 фев 2019, 17:29
25d11a8
Код
Авторство
О чём код?
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2018 Intel Corporation */ /* * eBPF program sample. * does nothing always return success. * used to measure BPF infrastructure overhead. * To compile: * clang -O2 -target bpf -c dummy.c */ #include <stdint.h> #include <stddef.h> uint64_t entry(void *arg) { return 1; }