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
384void
385dumpMainQueue()
386{
387 mainEventQueue.dump();
388}
389
390
391const char *

--- 41 unchanged lines hidden ---