examples/ip_pipeline: add thread runtime
[dpdk.git] / examples / ip_pipeline / thread.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4
5 #ifndef _INCLUDE_THREAD_H_
6 #define _INCLUDE_THREAD_H_
7
8 #include <stdint.h>
9
10 int
11 thread_init(void);
12
13 int
14 thread_main(void *arg);
15
16 #endif /* _INCLUDE_THREAD_H_ */