eventq.cc (8232:b28d06a175be) eventq.cc (8648:974f0e4a9ff6)
1/*
2 * Copyright (c) 2000-2005 The Regents of The University of Michigan
3 * Copyright (c) 2008 The Hewlett-Packard Development Company
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

368 }
369
370 nextBin = nextBin->nextBin;
371 }
372
373 return true;
374}
375
1/*
2 * Copyright (c) 2000-2005 The Regents of The University of Michigan
3 * Copyright (c) 2008 The Hewlett-Packard Development Company
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

368 }
369
370 nextBin = nextBin->nextBin;
371 }
372
373 return true;
374}
375
376Event*
377EventQueue::replaceHead(Event* s)
378{
379 Event* t = head;
380 head = s;
381 return t;
382}
383
376void
377dumpMainQueue()
378{
379 mainEventQueue.dump();
380}
381
382
383const char *

--- 41 unchanged lines hidden ---
384void
385dumpMainQueue()
386{
387 mainEventQueue.dump();
388}
389
390
391const char *

--- 41 unchanged lines hidden ---