dpdk/examples/ip_pipeline/thread.h
<<
>>
Prefs
   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
  10int
  11thread_pipeline_enable(uint32_t thread_id,
  12        const char *pipeline_name);
  13
  14int
  15thread_pipeline_disable(uint32_t thread_id,
  16        const char *pipeline_name);
  17
  18int
  19thread_init(void);
  20
  21int
  22thread_main(void *arg);
  23
  24#endif /* _INCLUDE_THREAD_H_ */
  25