aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/ocaml/byterun/spacetime.c
blob: 2b0bf1dc21f3231724850e236a21fe8d54a35509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}