| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 i::Isolate* isolate_; | 92 i::Isolate* isolate_; |
| 93 | 93 |
| 94 friend class ReceiverThread; | 94 friend class ReceiverThread; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 | 97 |
| 98 // Thread reading from debugged V8 instance. | 98 // Thread reading from debugged V8 instance. |
| 99 class ReceiverThread: public i::Thread { | 99 class ReceiverThread: public i::Thread { |
| 100 public: | 100 public: |
| 101 ReceiverThread(i::Isolate* isolate, RemoteDebugger* remote_debugger) | 101 ReceiverThread(i::Isolate* isolate, RemoteDebugger* remote_debugger) |
| 102 : i::Thread(isolate), remote_debugger_(remote_debugger) {} | 102 : Thread(isolate, "d8:ReceiverThrd"), |
| 103 remote_debugger_(remote_debugger) {} |
| 103 ~ReceiverThread() {} | 104 ~ReceiverThread() {} |
| 104 | 105 |
| 105 void Run(); | 106 void Run(); |
| 106 | 107 |
| 107 private: | 108 private: |
| 108 RemoteDebugger* remote_debugger_; | 109 RemoteDebugger* remote_debugger_; |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 | 112 |
| 112 // Thread reading keyboard input. | 113 // Thread reading keyboard input. |
| 113 class KeyboardThread: public i::Thread { | 114 class KeyboardThread: public i::Thread { |
| 114 public: | 115 public: |
| 115 explicit KeyboardThread(i::Isolate* isolate, RemoteDebugger* remote_debugger) | 116 explicit KeyboardThread(i::Isolate* isolate, RemoteDebugger* remote_debugger) |
| 116 : i::Thread(isolate), remote_debugger_(remote_debugger) {} | 117 : Thread(isolate, "d8:KeyboardThrd"), |
| 118 remote_debugger_(remote_debugger) {} |
| 117 ~KeyboardThread() {} | 119 ~KeyboardThread() {} |
| 118 | 120 |
| 119 void Run(); | 121 void Run(); |
| 120 | 122 |
| 121 private: | 123 private: |
| 122 RemoteDebugger* remote_debugger_; | 124 RemoteDebugger* remote_debugger_; |
| 123 }; | 125 }; |
| 124 | 126 |
| 125 | 127 |
| 126 // Events processed by the main deubgger thread. | 128 // Events processed by the main deubgger thread. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 147 RemoteDebuggerEvent* next_; | 149 RemoteDebuggerEvent* next_; |
| 148 | 150 |
| 149 friend class RemoteDebugger; | 151 friend class RemoteDebugger; |
| 150 }; | 152 }; |
| 151 | 153 |
| 152 | 154 |
| 153 } // namespace v8 | 155 } // namespace v8 |
| 154 | 156 |
| 155 | 157 |
| 156 #endif // V8_D8_DEBUG_H_ | 158 #endif // V8_D8_DEBUG_H_ |
| OLD | NEW |