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

Side by Side Diff: src/trusted/service_runtime/osx/nacl_oop_debugger_hooks.c

Issue 6995160: Hooks for out-of-process (OOP) debugger. (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 #include "native_client/src/trusted/service_runtime/nacl_oop_debugger_hooks.h"
8
9 /* placeholders */
10 void NaClOopDebuggerAppCreateHook(struct NaClApp *nap) {
11 UNREFERENCED_PARAMETER(nap);
12 }
13
14 void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp,
15 int exit_code) {
16 UNREFERENCED_PARAMETER(natp);
17 UNREFERENCED_PARAMETER(exit_code);
18 }
19 void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp,
20 int exit_code) {
21 UNREFERENCED_PARAMETER(natp);
22 UNREFERENCED_PARAMETER(exit_code);
23 }
24
25 void NaClOopDebuggerAppExitHook(int exit_code) {
26 UNREFERENCED_PARAMETER(exit_code);
27 }
28
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/nacl_oop_debugger_hooks.h ('k') | src/trusted/service_runtime/sel_ldr_standard.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698