Changeset 6bd96fc7 in rtems


Ignore:
Timestamp:
01/03/03 20:40:29 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3d9f688e
Parents:
1292ba4
Message:

2003-01-03 Jitendra Vegiraju <jvegiraju@…>

  • sys/queue.h: Fix alignment problem on ARM.
Location:
cpukit/libnetworking
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libnetworking/ChangeLog

    r1292ba4 r6bd96fc7  
     12003-01-03      Jitendra Vegiraju <jvegiraju@netscape.net>
     2
     3        * sys/queue.h: Fix alignment problem on ARM.
     4
    152002-11-26      Chris Johns <cjohns@cybertec.com.au>
    26
  • cpukit/libnetworking/sys/queue.h

    r1292ba4 r6bd96fc7  
    565565 */
    566566
     567
     568#ifdef  __GNUC__
     569
    567570struct 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
    570578};
    571 
    572 #ifdef  __GNUC__
    573579
    574580static __inline void
Note: See TracChangeset for help on using the changeset viewer.