API Reference Manual 1.51.0
Loading...
Searching...
No Matches
cpumap.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2025 Nokia
3 */
4
7#ifndef CPUMAP_H_
8#define CPUMAP_H_
9
10#include <stdint.h>
11
12#include <odp_api.h>
13
14typedef struct {
15 char **workers;
16 uint32_t num;
17 odp_cpumask_t cpumask;
18} cpumap_t;
19
20#endif
The OpenDataPlane API.