API Reference Manual 1.51.0
Loading...
Searching...
No Matches
work.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2025 Nokia
3 */
4
7#ifndef WORK_H_
8#define WORK_H_
9
10#include <odp_api.h>
11
12#include "odp_pipeline_work.h"
13
14typedef void *work_t;
15
16work_t work_create_work(const odp_pl_work_param_t *param);
17
18int work_issue(work_t work, odp_event_t ev[], int num);
19
20void work_print_work(work_t work, const char *queue);
21
22void work_destroy_work(work_t work);
23
24#endif
The OpenDataPlane API.