| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 void RunRemoteDebugger(int port) { | 162 void RunRemoteDebugger(int port) { |
| 163 RemoteDebugger debugger(port); | 163 RemoteDebugger debugger(port); |
| 164 debugger.Run(); | 164 debugger.Run(); |
| 165 } | 165 } |
| 166 | 166 |
| 167 | 167 |
| 168 void RemoteDebugger::Run() { | 168 void RemoteDebugger::Run() { |
| 169 bool ok; | 169 bool ok; |
| 170 | 170 |
| 171 // Make sure that socket support is initialized. | 171 // Make sure that socket support is initialized. |
| 172 ok = i::Socket::Setup(); | 172 ok = i::Socket::SetUp(); |
| 173 if (!ok) { | 173 if (!ok) { |
| 174 printf("Unable to initialize socket support %d\n", i::Socket::LastError()); | 174 printf("Unable to initialize socket support %d\n", i::Socket::LastError()); |
| 175 return; | 175 return; |
| 176 } | 176 } |
| 177 | 177 |
| 178 // Connect to the debugger agent. | 178 // Connect to the debugger agent. |
| 179 conn_ = i::OS::CreateSocket(); | 179 conn_ = i::OS::CreateSocket(); |
| 180 static const int kPortStrSize = 6; | 180 static const int kPortStrSize = 6; |
| 181 char port_str[kPortStrSize]; | 181 char port_str[kPortStrSize]; |
| 182 i::OS::SNPrintF(i::Vector<char>(port_str, kPortStrSize), "%d", port_); | 182 i::OS::SNPrintF(i::Vector<char>(port_str, kPortStrSize), "%d", port_); |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 // Pass the keyboard command to the main thread. | 363 // Pass the keyboard command to the main thread. |
| 364 remote_debugger_->KeyboardCommand( | 364 remote_debugger_->KeyboardCommand( |
| 365 i::SmartArrayPointer<char>(i::StrDup(command))); | 365 i::SmartArrayPointer<char>(i::StrDup(command))); |
| 366 } | 366 } |
| 367 } | 367 } |
| 368 | 368 |
| 369 | 369 |
| 370 } // namespace v8 | 370 } // namespace v8 |
| 371 | 371 |
| 372 #endif // ENABLE_DEBUGGER_SUPPORT | 372 #endif // ENABLE_DEBUGGER_SUPPORT |
| OLD | NEW |