aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/ocaml/byterun/spacetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/ocaml/byterun/spacetime.c')
-rw-r--r--test/monniaux/ocaml/byterun/spacetime.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/monniaux/ocaml/byterun/spacetime.c b/test/monniaux/ocaml/byterun/spacetime.c
new file mode 100644
index 00000000..2b0bf1dc
--- /dev/null
+++ b/test/monniaux/ocaml/byterun/spacetime.c
@@ -0,0 +1,38 @@
+/**************************************************************************/
+/* */
+/* OCaml */
+/* */
+/* Mark Shinwell and Leo White, Jane Street Europe */
+/* */
+/* Copyright 2013--2016, Jane Street Group, LLC */
+/* */
+/* All rights reserved. This file is distributed under the terms of */
+/* the GNU Lesser General Public License version 2.1, with the */
+/* special exception on linking described in the file LICENSE. */
+/* */
+/**************************************************************************/
+
+#include "caml/fail.h"
+#include "caml/mlvalues.h"
+
+int caml_ensure_spacetime_dot_o_is_included = 42;
+
+CAMLprim value caml_spacetime_only_works_for_native_code(value foo, ...)
+{
+ caml_failwith("Spacetime profiling only works for native code");
+}
+
+uintnat caml_spacetime_my_profinfo (void)
+{
+ return 0;
+}
+
+CAMLprim value caml_spacetime_enabled (value v_unit)
+{
+ return Val_false; /* running in bytecode */
+}
+
+CAMLprim value caml_register_channel_for_spacetime (value v_channel)
+{
+ return Val_unit;
+}