Deleted Added
sdiff udiff text old ( 11290:1640dd68b0a4 ) new ( 11701:5e7599457b97 )
full compact
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

81 /**
82 * The msg type field is valid for all header packets.
83 *
84 * @note senderRank is used with data packets while collFlags are used
85 * by sync ack messages to trigger collective ckpt or exit events.
86 */
87 MsgType msgType;
88 Tick sendTick;
89 union {
90 Tick sendDelay;
91 Tick syncRepeat;
92 };
93 union {
94 /**
95 * Actual length of the simulated Ethernet packet.
96 */
97 unsigned dataPacketLength;
98 struct {
99 ReqType needCkpt;
100 ReqType needExit;
101 };
102 };
103 };
104};
105
106#endif