pollevent.cc (10905:a6ca6831e775) pollevent.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2002-2005 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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#include <sys/ioctl.h>
32#include <sys/types.h>
1/*
2 * Copyright (c) 2002-2005 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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#include <sys/ioctl.h>
32#include <sys/types.h>
33
33#if defined(__sun__) || defined(__SUNPRO_CC)
34#include <sys/file.h>
34#if defined(__sun__) || defined(__SUNPRO_CC)
35#include <sys/file.h>
36
35#endif
36
37#endif
38
39#include "base/pollevent.hh"
40
37#include <fcntl.h>
38#include <unistd.h>
39
40#include <csignal>
41
42#include "base/misc.hh"
41#include <fcntl.h>
42#include <unistd.h>
43
44#include <csignal>
45
46#include "base/misc.hh"
43#include "base/pollevent.hh"
44#include "base/types.hh"
45#include "sim/async.hh"
46#include "sim/core.hh"
47#include "sim/eventq.hh"
48#include "sim/serialize.hh"
49
50using namespace std;
51

--- 180 unchanged lines hidden ---
47#include "base/types.hh"
48#include "sim/async.hh"
49#include "sim/core.hh"
50#include "sim/eventq.hh"
51#include "sim/serialize.hh"
52
53using namespace std;
54

--- 180 unchanged lines hidden ---