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

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

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 #include "native_client/src/include/nacl_platform.h"
8 #include "native_client/src/trusted/service_runtime/nacl_oop_debugger_hooks.h"
9
10 /* placeholders */
11 void NaClOopDebuggerAppCreateHook(struct NaClApp *nap) {
12 UNREFERENCED_PARAMETER(nap);
13 }
14
15 void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp) {
16 UNREFERENCED_PARAMETER(natp);
17 }
18 void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp,
19 int exit_code) {
20 UNREFERENCED_PARAMETER(natp);
21 UNREFERENCED_PARAMETER(exit_code);
22 }
23
24 void NaClOopDebuggerAppExitHook(int exit_code) {
25 UNREFERENCED_PARAMETER(exit_code);
26 }
27
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