aboutsummaryrefslogtreecommitdiff
path: root/test/api_test/odp_shm_test.h
blob: 3b3f49b08dac877bd38649d734400f5f9110045c (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
/* Copyright (c) 2013, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

/**
 * @file
 *
 * ODP api test shared memory header
 */

#ifndef ODP_SHM_TEST_H
#define ODP_SHM_TEST_H

typedef struct {
	int foo;
	int bar;
} test_shared_data_t;

extern __thread test_shared_data_t *test_shared_data;
extern int test_shm(void);

#endif /* ODP_SHM_TEST_H */