| 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 #ifndef SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| 8 #define SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| 9 |
| 10 struct NaClApp; |
| 11 struct NaClAppThread; |
| 12 |
| 13 void NaClOopDebuggerAppCreateHook(struct NaClApp *nap); |
| 14 void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp); |
| 15 void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp, int exit_code); |
| 16 void NaClOopDebuggerAppExitHook(int exit_code); |
| 17 |
| 18 #endif // SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| 19 |
| OLD | NEW |