| 196 | } |
| 197 | |
| 198 | static inline void volatile_list_add(volatile struct volatile_list_head *newp, |
| 199 | volatile struct volatile_list_head *head) |
| 200 | { |
| 201 | head->next->prev = newp; |
| 202 | newp->next = head->next; |
| 203 | newp->prev = head; |
| 204 | head->next = newp; |
| 205 | } |
| 206 | |
| 207 | #endif /* LIST_H */ |