1 |
8 |
alfik |
#ifndef __ALT_LIST_H__
|
2 |
|
|
#define __ALT_LIST_H__
|
3 |
|
|
|
4 |
|
|
/******************************************************************************
|
5 |
|
|
* *
|
6 |
|
|
* License Agreement *
|
7 |
|
|
* *
|
8 |
|
|
* Copyright (c) 2004 Altera Corporation, San Jose, California, USA. *
|
9 |
|
|
* All rights reserved. *
|
10 |
|
|
* *
|
11 |
|
|
* Permission is hereby granted, free of charge, to any person obtaining a *
|
12 |
|
|
* copy of this software and associated documentation files (the "Software"), *
|
13 |
|
|
* to deal in the Software without restriction, including without limitation *
|
14 |
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
|
15 |
|
|
* and/or sell copies of the Software, and to permit persons to whom the *
|
16 |
|
|
* Software is furnished to do so, subject to the following conditions: *
|
17 |
|
|
* *
|
18 |
|
|
* The above copyright notice and this permission notice shall be included in *
|
19 |
|
|
* all copies or substantial portions of the Software. *
|
20 |
|
|
* *
|
21 |
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
|
22 |
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
|
23 |
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
|
24 |
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
|
25 |
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *
|
26 |
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *
|
27 |
|
|
* DEALINGS IN THE SOFTWARE. *
|
28 |
|
|
* *
|
29 |
|
|
* This agreement shall be governed in all respects by the laws of the State *
|
30 |
|
|
* of California and by the laws of the United States of America. *
|
31 |
|
|
* *
|
32 |
|
|
* Altera does not recommend, suggest or require that this reference design *
|
33 |
|
|
* file be used in conjunction or combination with any other product. *
|
34 |
|
|
******************************************************************************/
|
35 |
|
|
|
36 |
|
|
/******************************************************************************
|
37 |
|
|
* *
|
38 |
|
|
* THIS IS A LIBRARY READ-ONLY SOURCE FILE. DO NOT EDIT. *
|
39 |
|
|
* *
|
40 |
|
|
******************************************************************************/
|
41 |
|
|
|
42 |
|
|
#include "alt_types.h"
|
43 |
|
|
|
44 |
|
|
/*
|
45 |
|
|
* alt_llist.h defines structures and functions for use in manipulating linked
|
46 |
|
|
* lists. A list is considered to be constructed from a chain of objects of
|
47 |
|
|
* type alt_llist, with one object being defined to be the head element.
|
48 |
|
|
*
|
49 |
|
|
* A list is considered to be empty if it only contains the head element.
|
50 |
|
|
*/
|
51 |
|
|
|
52 |
|
|
#ifdef __cplusplus
|
53 |
|
|
extern "C"
|
54 |
|
|
{
|
55 |
|
|
#endif /* __cplusplus */
|
56 |
|
|
|
57 |
|
|
/*
|
58 |
|
|
* alt_llist is the structure used to represent an element within a linked
|
59 |
|
|
* list.
|
60 |
|
|
*/
|
61 |
|
|
|
62 |
|
|
typedef struct alt_llist_s alt_llist;
|
63 |
|
|
|
64 |
|
|
struct alt_llist_s {
|
65 |
|
|
alt_llist* next; /* Pointer to the next element in the list. */
|
66 |
|
|
alt_llist* previous; /* Pointer to the previous element in the list. */
|
67 |
|
|
};
|
68 |
|
|
|
69 |
|
|
/*
|
70 |
|
|
* ALT_LLIST_HEAD is a macro that can be used to create the head of a new
|
71 |
|
|
* linked list. This is named "head". The head element is initialised to
|
72 |
|
|
* represent an empty list.
|
73 |
|
|
*/
|
74 |
|
|
|
75 |
|
|
#define ALT_LLIST_HEAD(head) alt_llist head = {&head, &head}
|
76 |
|
|
|
77 |
|
|
/*
|
78 |
|
|
* ALT_LLIST_ENTRY is a macro used to define an uninitialised linked list
|
79 |
|
|
* entry. This is used to reserve space in structure initialisation for
|
80 |
|
|
* structures that inherit form alt_llist.
|
81 |
|
|
*/
|
82 |
|
|
|
83 |
|
|
#define ALT_LLIST_ENTRY {0, 0}
|
84 |
|
|
|
85 |
|
|
/*
|
86 |
|
|
* alt_llist_insert() insert adds the linked list entry "entry" as the
|
87 |
|
|
* first entry in the linked list "list". "list" is the list head element.
|
88 |
|
|
*/
|
89 |
|
|
|
90 |
|
|
static ALT_INLINE void ALT_ALWAYS_INLINE alt_llist_insert(alt_llist* list,
|
91 |
|
|
alt_llist* entry)
|
92 |
|
|
{
|
93 |
|
|
entry->previous = list;
|
94 |
|
|
entry->next = list->next;
|
95 |
|
|
|
96 |
|
|
list->next->previous = entry;
|
97 |
|
|
list->next = entry;
|
98 |
|
|
}
|
99 |
|
|
|
100 |
|
|
/*
|
101 |
|
|
* alt_llist_remove() is called to remove an element from a linked list. The
|
102 |
|
|
* input argument is the element to remove.
|
103 |
|
|
*/
|
104 |
|
|
|
105 |
|
|
static ALT_INLINE void ALT_ALWAYS_INLINE alt_llist_remove(alt_llist* entry)
|
106 |
|
|
{
|
107 |
|
|
entry->next->previous = entry->previous;
|
108 |
|
|
entry->previous->next = entry->next;
|
109 |
|
|
|
110 |
|
|
/*
|
111 |
|
|
* Set the entry to point to itself, so that any further calls to
|
112 |
|
|
* alt_llist_remove() are harmless.
|
113 |
|
|
*/
|
114 |
|
|
|
115 |
|
|
entry->previous = entry;
|
116 |
|
|
entry->next = entry;
|
117 |
|
|
}
|
118 |
|
|
|
119 |
|
|
#ifdef __cplusplus
|
120 |
|
|
}
|
121 |
|
|
#endif
|
122 |
|
|
|
123 |
|
|
#endif /* __ALT_LLIST_H__ */
|