Index: tests/untrusted_crash_dump/untrusted_crash_dump.h |
diff --git a/tests/untrusted_crash_dump/untrusted_crash_dump.h b/tests/untrusted_crash_dump/untrusted_crash_dump.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..dee6c05fb5dc6a32ddb4b4793a26f1807e729e3c |
--- /dev/null |
+++ b/tests/untrusted_crash_dump/untrusted_crash_dump.h |
@@ -0,0 +1,25 @@ |
+/* |
+ * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+/* |
+ * Untrusted crash dumper. |
+ */ |
+ |
+#ifndef NATIVE_CLIENT_TESTS_UNTRUSTED_CRASH_DUMP_UNTRUSTED_CRASH_DUMP_H__ |
+#define NATIVE_CLIENT_TESTS_UNTRUSTED_CRASH_DUMP_UNTRUSTED_CRASH_DUMP_H__ 1 |
+ |
+#include "native_client/src/include/nacl_base.h" |
+ |
+ |
+EXTERN_C_BEGIN |
+ |
+extern void NaClCrashDumpInit(char *program_name); |
Mark Seaborn
2012/02/06 19:44:06
'extern' not needed.
bradn
2012/02/06 22:27:48
Done.
|
+extern void NaClCrashDumpDestroy(void); |
+extern void NaClCrashDumpInitThread(void); |
+ |
+EXTERN_C_END |
+ |
+#endif /* NATIVE_CLIENT_TESTS_UNTRUSTED_CRASH_DUMP_UNTRUSTED_CRASH_DUMP_H__ */ |