doc: whitespace changes in licenses
[dpdk.git] / lib / librte_eal / common / include / rte_tailq_elem.h
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 /**
35  * @file
36  *
37  * This file contains the type of the tailq elem recognised by DPDK, which
38  * can be used to fill out an array of structures describing the tailq.
39  *
40  * In order to populate an array, the user of this file must define this macro:
41  * rte_tailq_elem(idx, name). For example:
42  *
43  * @code
44  * enum rte_tailq_t {
45  * #define rte_tailq_elem(idx, name)     idx,
46  * #define rte_tailq_end(idx)            idx
47  * #include <rte_tailq_elem.h>
48  * };
49  *
50  * const char* rte_tailq_names[RTE_MAX_TAILQ] = {
51  * #define rte_tailq_elem(idx, name)     name,
52  * #include <rte_tailq_elem.h>
53  * };
54  * @endcode
55  *
56  * Note that this file can be included multiple times within the same file.
57  */
58
59 #ifndef rte_tailq_elem
60 #define rte_tailq_elem(idx, name)
61 #endif /* rte_tailq_elem */
62
63 #ifndef rte_tailq_end
64 #define rte_tailq_end(idx)
65 #endif /* rte_tailq_end */
66
67 rte_tailq_elem(RTE_TAILQ_PCI, "PCI_RESOURCE_LIST")
68
69 rte_tailq_elem(RTE_TAILQ_MEMPOOL, "RTE_MEMPOOL")
70
71 rte_tailq_elem(RTE_TAILQ_RING, "RTE_RING")
72
73 rte_tailq_elem(RTE_TAILQ_HASH, "RTE_HASH")
74
75 rte_tailq_elem(RTE_TAILQ_FBK_HASH, "RTE_FBK_HASH")
76
77 rte_tailq_elem(RTE_TAILQ_LPM, "RTE_LPM")
78
79 rte_tailq_elem(RTE_TAILQ_LPM6, "RTE_LPM6")
80
81 rte_tailq_elem(RTE_TAILQ_PM, "RTE_PM")
82
83 rte_tailq_elem(RTE_TAILQ_ACL, "RTE_ACL")
84
85 rte_tailq_end(RTE_TAILQ_NUM)
86
87 #undef rte_tailq_elem
88 #undef rte_tailq_end