OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 #if defined(FLETCH_TARGET_OS_LK) | 5 #if defined(FLETCH_TARGET_OS_LK) |
6 | 6 |
7 #include "src/vm/event_handler.h" | 7 #include "src/vm/event_handler.h" |
8 | 8 |
9 #include <kernel/event.h> | 9 #include <kernel/event.h> |
10 #include <kernel/port.h> | 10 #include <kernel/port.h> |
11 | 11 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 Send(reinterpret_cast<Port*>(result.ctx), value, false); | 158 Send(reinterpret_cast<Port*>(result.ctx), value, false); |
159 } | 159 } |
160 | 160 |
161 HandleTimeouts(); | 161 HandleTimeouts(); |
162 } | 162 } |
163 } | 163 } |
164 | 164 |
165 } // namespace fletch | 165 } // namespace fletch |
166 | 166 |
167 #endif // defined(FLETCH_TARGET_OS_LK) | 167 #endif // defined(FLETCH_TARGET_OS_LK) |
OLD | NEW |