API Reference Manual 1.51.0
Loading...
Searching...
No Matches
worker.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2025 Nokia
3 */
4
7#ifndef WORKER_H_
8#define WORKER_H_
9
10#include <stdint.h>
11
12typedef enum {
13 WT_PLAIN,
14 WT_SCHED
15} worker_type_t;
16
17typedef struct {
18 char *name;
19 char **inputs;
20 char **outputs;
21 int64_t wait_ns;
22 uint32_t num_in;
23 uint32_t num_out;
24 uint32_t burst_size;
25 worker_type_t type;
26} worker_t;
27
28#endif