| 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 #ifndef SRC_VM_SIGNAL_H_ | 5 #ifndef SRC_VM_SIGNAL_H_ |
| 6 #define SRC_VM_SIGNAL_H_ | 6 #define SRC_VM_SIGNAL_H_ |
| 7 | 7 |
| 8 #include "src/shared/globals.h" | 8 #include "src/shared/globals.h" |
| 9 #include "src/shared/atomic.h" | 9 #include "src/shared/atomic.h" |
| 10 | 10 |
| 11 #include "src/vm/heap.h" | 11 #include "src/vm/heap.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 41 Kind kind() const { return kind_; } | 41 Kind kind() const { return kind_; } |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 ProcessHandle* const process_handle_; | 44 ProcessHandle* const process_handle_; |
| 45 const Kind kind_; | 45 const Kind kind_; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace fletch | 48 } // namespace fletch |
| 49 | 49 |
| 50 #endif // SRC_VM_SIGNAL_H_ | 50 #endif // SRC_VM_SIGNAL_H_ |
| OLD | NEW |