aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/api/odp.h
blob: b7b1ca99625283b3cf9da5d126df13859f258a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Copyright (c) 2013, Linaro Limited
 * All rights reserved
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

/**
 * @file
 *
 * The OpenDataPlane API
 *
 */

#ifndef ODP_H_
#define ODP_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <odp_config.h>

#include <odp_version.h>
#include <odp_std_types.h>
#include <odp_compiler.h>
#include <odp_align.h>
#include <odp_hints.h>
#include <odp_debug.h>
#include <odp_byteorder.h>
#include <odp_coremask.h>
#include <odp_barrier.h>
#include <odp_spinlock.h>
#include <odp_atomic.h>
#include <odp_init.h>
#include <odp_system_info.h>
#include <odp_thread.h>
#include <odp_shared_memory.h>
#include <odp_buffer.h>
#include <odp_buffer_pool.h>
#include <odp_queue.h>
#include <odp_ticketlock.h>
#include <odp_time.h>
#include <odp_timer.h>
#include <odp_schedule.h>
#include <odp_sync.h>
#include <odp_packet.h>
#include <odp_packet_flags.h>
#include <odp_packet_io.h>
#include <odp_crypto.h>
#include <odp_classification.h>
#include <odp_rwlock.h>

#ifdef __cplusplus
}
#endif
#endif