vnet: Add required header for pthread_np

Type: improvement
Change-Id: Ia9295b79340a18de6eb5fe80877dcf4ce97b35eb
Signed-off-by: Tom Jones <thj@freebsd.org>
This commit is contained in:
Tom Jones
2024-01-30 09:26:42 +00:00
committed by Damjan Marion
parent 67e7f016d2
commit 9447adc429

View File

@ -15,6 +15,9 @@
#define _GNU_SOURCE
#include <pthread.h>
#ifdef __FreeBSD__
#include <pthread_np.h>
#endif /* __FreeBSD__ */
#include <sched.h>
#include <vppinfra/clib.h>