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

Side by Side Diff: src/trusted/service_runtime/nacl_oop_debugger_hooks.h

Issue 7164001: Resurrection of "Hooks for out-of-process (OOP) debugger" CL. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #ifndef SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_
8 #define SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_
9
10 struct NaClApp;
11 struct NaClAppThread;
12
13 void NaClOopDebuggerAppCreateHook(struct NaClApp *nap);
14 void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp);
15 void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp, int exit_code);
16 void NaClOopDebuggerAppExitHook(int exit_code);
17
18 #endif // SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_
19
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/nacl_app_thread.c ('k') | src/trusted/service_runtime/osx/nacl_oop_debugger_hooks.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698