| OLD | NEW |
| (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 |
| OLD | NEW |