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 3 : void NaClOopDebuggerAppCreateHook(struct NaClApp *nap) {
12 : UNREFERENCED_PARAMETER(nap);
13 3 : }
14 :
15 3 : void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp) {
16 : UNREFERENCED_PARAMETER(natp);
17 3 : }
18 : void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp,
19 0 : int exit_code) {
20 : UNREFERENCED_PARAMETER(natp);
21 : UNREFERENCED_PARAMETER(exit_code);
22 0 : }
23 :
24 3 : void NaClOopDebuggerAppExitHook(int exit_code) {
25 : UNREFERENCED_PARAMETER(exit_code);
26 3 : }
27 :
|