diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-05-13 07:00:31 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-05-13 07:00:31 -0400 |
commit | 6a26c92d6f18035177b9653ad6a87da5a7d93e0d (patch) | |
tree | 9d6aade6910bae7f4ebbc2593c081936d6e3cbe5 /kern | |
parent | ce697a592e9e999f49d39e8ffe75995f0fb7eeb9 (diff) | |
download | gem5-6a26c92d6f18035177b9653ad6a87da5a7d93e0d.tar.xz |
wrap mbuf stuff in the tru64 namespace since other OSes
may be different
--HG--
extra : convert_revision : 75ea218b5219c7a2b5bf7dca7c52dfff22740478
Diffstat (limited to 'kern')
-rw-r--r-- | kern/tru64/mbuf.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kern/tru64/mbuf.hh b/kern/tru64/mbuf.hh index bfee0b3fa..a386fa611 100644 --- a/kern/tru64/mbuf.hh +++ b/kern/tru64/mbuf.hh @@ -32,6 +32,8 @@ #include "sim/host.hh" #include "targetarch/isa_traits.hh" +namespace tru64 { + struct m_hdr { Addr mh_next; // 0x00 Addr mh_nextpkt; // 0x08 @@ -91,4 +93,6 @@ struct mbuf { #define m_pktdat M_dat.MH.MH_dat.MH_databuf #define m_dat M_dat.M_databuf +} + #endif // __MBUF_HH__ |