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

Side by Side Diff: src/debug.h

Issue 491079: Reapply "wait for connection" feature implementation (Closed)
Patch Set: merge Created 11 years 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
« no previous file with comments | « src/api.cc ('k') | src/debug.cc » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 v8::Debug::ClientData* client_data = NULL); 629 v8::Debug::ClientData* client_data = NULL);
630 630
631 // Check whether there are commands in the command queue. 631 // Check whether there are commands in the command queue.
632 static bool HasCommands(); 632 static bool HasCommands();
633 633
634 static Handle<Object> Call(Handle<JSFunction> fun, 634 static Handle<Object> Call(Handle<JSFunction> fun,
635 Handle<Object> data, 635 Handle<Object> data,
636 bool* pending_exception); 636 bool* pending_exception);
637 637
638 // Start the debugger agent listening on the provided port. 638 // Start the debugger agent listening on the provided port.
639 static bool StartAgent(const char* name, int port); 639 static bool StartAgent(const char* name, int port,
640 bool wait_for_connection = false);
640 641
641 // Stop the debugger agent. 642 // Stop the debugger agent.
642 static void StopAgent(); 643 static void StopAgent();
643 644
644 // Blocks until the agent has started listening for connections 645 // Blocks until the agent has started listening for connections
645 static void WaitForAgent(); 646 static void WaitForAgent();
646 647
647 // Unload the debugger if possible. Only called when no debugger is currently 648 // Unload the debugger if possible. Only called when no debugger is currently
648 // active. 649 // active.
649 static void UnloadDebugger(); 650 static void UnloadDebugger();
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 Debug::AddressId id_; 857 Debug::AddressId id_;
857 int reg_; 858 int reg_;
858 }; 859 };
859 860
860 861
861 } } // namespace v8::internal 862 } } // namespace v8::internal
862 863
863 #endif // ENABLE_DEBUGGER_SUPPORT 864 #endif // ENABLE_DEBUGGER_SUPPORT
864 865
865 #endif // V8_DEBUG_H_ 866 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698