Deleted Added
sdiff udiff text old ( 2641:6d9d837e2032 ) new ( 2662:f24ae2d09e27 )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
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;

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

92
93 if (s1 >= s2 && s1 < e2)
94 return true;
95 if (e1 >= s2 && e1 < e2)
96 return true;
97 return false;
98}
99
100bool
101fixPacket(Packet *func, Packet *timing)
102{
103 panic("Need to implement!");
104}