diff options
author | Lukas Larsson <[email protected]> | 2014-09-11 18:26:00 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-12-09 14:21:00 +0100 |
commit | 6e3057ddddb77835664f5264a7da62452dc3d9c1 (patch) | |
tree | a65550467753347acca7e6c5dee39b0e8d5fbd54 /erts/emulator/beam/erl_bif_trace.c | |
parent | 58f42056a6386b16edd647721df046db3581739b (diff) | |
download | otp-6e3057ddddb77835664f5264a7da62452dc3d9c1.tar.gz otp-6e3057ddddb77835664f5264a7da62452dc3d9c1.tar.bz2 otp-6e3057ddddb77835664f5264a7da62452dc3d9c1.zip |
erts: Allow cpu_timestamp tracing for Linux
Diffstat (limited to 'erts/emulator/beam/erl_bif_trace.c')
-rw-r--r-- | erts/emulator/beam/erl_bif_trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_bif_trace.c b/erts/emulator/beam/erl_bif_trace.c index 06fbbea123..f5e582b1c5 100644 --- a/erts/emulator/beam/erl_bif_trace.c +++ b/erts/emulator/beam/erl_bif_trace.c @@ -651,7 +651,7 @@ Eterm trace_3(BIF_ALIST_3) if (pid_spec == am_all) { if (on) { if (!erts_cpu_timestamp) { -#ifdef HAVE_CLOCK_GETTIME +#ifdef HAVE_CLOCK_GETTIME_CPU_TIME /* Perhaps clock_gettime was found during config on a different machine than this. We check @@ -678,7 +678,7 @@ Eterm trace_3(BIF_ALIST_3) if (erts_start_now_cpu() < 0) { goto error; } -#endif /* HAVE_CLOCK_GETTIME */ +#endif /* HAVE_CLOCK_GETTIME_CPU_TIME */ erts_cpu_timestamp = !0; } } |