Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: src/d8-debug.cc

Issue 9227007: Version 3.8.6 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/d8.cc ('k') | src/debug.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698