Chromium Code Reviews| Index: src/trusted/service_runtime/nacl_oop_debugger_hooks.h |
| =================================================================== |
| --- src/trusted/service_runtime/nacl_oop_debugger_hooks.h (revision 0) |
| +++ src/trusted/service_runtime/nacl_oop_debugger_hooks.h (revision 0) |
| @@ -0,0 +1,18 @@ |
| +/* Copyright (c) 2011 The Native Client Authors. All rights reserved. |
|
Mark Seaborn
2011/06/13 19:40:51
Style here is:
/*
* comment
*/
garianov1
2011/06/13 20:09:10
Done.
|
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#ifndef SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| +#define SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| + |
| +struct NaClApp; |
| +struct NaClAppThread; |
| + |
| +void NaClOopDebuggerAppCreateHook(struct NaClApp* nap); |
|
Mark Seaborn
2011/06/13 19:40:51
Style here is "struct Foo *foo".
garianov1
2011/06/13 20:09:10
Done.
|
| +void NaClOopDebuggerThreadCreateHook(struct NaClAppThread* natp); |
| +void NaClOopDebuggerThreadExitHook(struct NaClAppThread* natp, int exit_code); |
| +void NaClOopDebuggerAppExitHook(int exit_code); |
| + |
| +#endif // SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ |
| + |