MessageBuffer.hh (13784:1941dc118243) MessageBuffer.hh (13799:15badf7874ee)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 114 unchanged lines hidden (view full) ---

123 void setVnet(int net) { m_vnet_id = net; }
124
125 Port &
126 getPort(const std::string &, PortID idx=InvalidPortID) override
127 {
128 return RubyDummyPort::instance();
129 }
130
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 114 unchanged lines hidden (view full) ---

123 void setVnet(int net) { m_vnet_id = net; }
124
125 Port &
126 getPort(const std::string &, PortID idx=InvalidPortID) override
127 {
128 return RubyDummyPort::instance();
129 }
130
131 void regStats();
131 void regStats() override;
132
133 // Function for figuring out if any of the messages in the buffer need
134 // to be updated with the data from the packet.
135 // Return value indicates the number of messages that were updated.
136 // This required for debugging the code.
137 uint32_t functionalWrite(Packet *pkt);
138
139 private:

--- 84 unchanged lines hidden ---
132
133 // Function for figuring out if any of the messages in the buffer need
134 // to be updated with the data from the packet.
135 // Return value indicates the number of messages that were updated.
136 // This required for debugging the code.
137 uint32_t functionalWrite(Packet *pkt);
138
139 private:

--- 84 unchanged lines hidden ---