| Index: src/platform-openbsd.cc
|
| diff --git a/src/platform-openbsd.cc b/src/platform-openbsd.cc
|
| index 84610314d2379f3b0a122212e6abaee0dae90514..38f9d7c1cba759101f8472e3d6a94022f68ed9a0 100644
|
| --- a/src/platform-openbsd.cc
|
| +++ b/src/platform-openbsd.cc
|
| @@ -52,6 +52,7 @@
|
| #include "v8.h"
|
|
|
| #include "platform.h"
|
| +#include "vm-state-inl.h"
|
|
|
|
|
| namespace v8 {
|
| @@ -574,11 +575,10 @@ class Sampler::PlatformData : public Malloced {
|
| };
|
|
|
|
|
| -Sampler::Sampler(Isolate* isolate, int interval, bool profiling)
|
| +Sampler::Sampler(Isolate* isolate, int interval)
|
| : isolate_(isolate),
|
| interval_(interval),
|
| - profiling_(profiling),
|
| - synchronous_(profiling),
|
| + profiling_(false),
|
| active_(false),
|
| samples_taken_(0) {
|
| data_ = new PlatformData();
|
|
|