brintos

brintos / linux-shallow public Read only

0
0
Text · 321 B · 69bd785 Raw
18 lines · c
1// SPDX-License-Identifier: GPL-2.02 3#include <test_progs.h>4 5#include "atomic_bounds.skel.h"6 7void test_atomic_bounds(void)8{9	struct atomic_bounds *skel;10	__u32 duration = 0;11 12	skel = atomic_bounds__open_and_load();13	if (CHECK(!skel, "skel_load", "couldn't load program\n"))14		return;15 16	atomic_bounds__destroy(skel);17}18