Changeset 6bd96fc7 in rtems for cpukit/libnetworking/sys/queue.h
- Timestamp:
- 01/03/03 20:40:29 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3d9f688e
- Parents:
- 1292ba4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libnetworking/sys/queue.h
r1292ba4 r6bd96fc7 565 565 */ 566 566 567 568 #ifdef __GNUC__ 569 567 570 struct quehead { 568 struct quehead *qh_link; 569 struct quehead *qh_rlink; 571 #if defined(__arm__) 572 struct quehead *qh_link __attribute__((packed)); 573 struct quehead *qh_rlink __attribute__((packed)); 574 #else /* !defined(__arm__)) */ 575 struct quehead *qh_link; 576 struct quehead *qh_rlink; 577 #endif 570 578 }; 571 572 #ifdef __GNUC__573 579 574 580 static __inline void
Note: See TracChangeset
for help on using the changeset viewer.