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