Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Unified Diff: components/nacl/loader/bare_metal/bare_metal_main.h

Issue 100373005: Initial implementation of Bare Metal Mode for NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/nacl/loader/bare_metal/bare_metal_main.h
diff --git a/components/nacl/loader/bare_metal/bare_metal_main.h b/components/nacl/loader/bare_metal/bare_metal_main.h
new file mode 100644
index 0000000000000000000000000000000000000000..e5b5204ded875819fe2028fa5d4aef50f8a594ec
--- /dev/null
+++ b/components/nacl/loader/bare_metal/bare_metal_main.h
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2013 The Native Client Authors. All rights reserved.
Mark Seaborn 2013/12/06 03:21:16 Nit: This should be "The Chromium Authors", as wit
hidehiko 2013/12/06 17:40:02 Oops. Done.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_
+#define COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_
+
+#include "native_client/src/include/portability.h"
+#include "native_client/src/public/imc_types.h"
+
+EXTERN_C_BEGIN
+
+/* Launch NaCl with Bare Metal Mode. */
+void NaClBareMetalMainStart(NaClHandle imc_bootstrap_handle);
+
+EXTERN_C_END
+
+#endif /* COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ */

Powered by Google App Engine
This is Rietveld 408576698