gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pollevent.hh
Go to the documentation of this file.
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;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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 
29 #ifndef __POLLEVENT_H__
30 #define __POLLEVENT_H__
31 
32 #include <poll.h>
33 
34 #include <vector>
35 
36 #include "sim/core.hh"
37 
38 class Checkpoint;
39 class PollQueue;
40 
41 class PollEvent : public Serializable
42 {
43  private:
44  friend class PollQueue;
45 
46  protected:
47  pollfd pfd;
49  bool enabled;
50 
51  public:
52  PollEvent(int fd, int event);
53  virtual ~PollEvent();
54 
55  void disable();
56  void enable();
57  virtual void process(int revent) = 0;
58 
59  bool queued() { return queue != 0; }
60 
61  void serialize(CheckpointOut &cp) const override;
62  void unserialize(CheckpointIn &cp) override;
63 };
64 
65 class PollQueue
66 {
67  private:
69  eventvec_t events;
70 
71  pollfd *poll_fds;
72  int max_size;
73  int num_fds;
74 
75  public:
76  PollQueue();
77  ~PollQueue();
78 
79  void copy();
80  void remove(PollEvent *event);
81  void schedule(PollEvent *event);
82  void service();
83 
84  public:
85  static void setupAsyncIO(int fd, bool set);
86 };
87 
88 extern PollQueue pollQueue;
89 
90 #endif // __POLLEVENT_H__
bool queued()
Definition: pollevent.hh:59
virtual ~PollEvent()
Definition: pollevent.cc:67
std::vector< PollEvent * > eventvec_t
Definition: pollevent.hh:68
eventvec_t events
Definition: pollevent.hh:69
virtual void process(int revent)=0
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: pollevent.cc:102
Definition: cprintf.cc:40
void disable()
Definition: pollevent.cc:74
pollfd * poll_fds
Definition: pollevent.hh:71
PollQueue * queue
Definition: pollevent.hh:48
pollfd pfd
Definition: pollevent.hh:47
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: pollevent.cc:94
int num_fds
Definition: pollevent.hh:73
bool enabled
Definition: pollevent.hh:49
PollQueue pollQueue
Definition: pollevent.cc:55
void enable()
Definition: pollevent.cc:84
Bitfield< 10, 5 > event
Basic support for object serialization.
Definition: serialize.hh:166
PollEvent(int fd, int event)
Definition: pollevent.cc:59
std::ostream CheckpointOut
Definition: serialize.hh:63
int max_size
Definition: pollevent.hh:72
Bitfield< 14, 12 > fd
Definition: types.hh:158
friend class PollQueue
Definition: pollevent.hh:44

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13