| Index: src/platform-freebsd.cc
|
| diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc
|
| index f903ee224234159a216b460d1c901c823f7d21f6..2f02886ba68dc3c90c2834c183030af08844806b 100644
|
| --- a/src/platform-freebsd.cc
|
| +++ b/src/platform-freebsd.cc
|
| @@ -53,6 +53,7 @@
|
| #include "v8.h"
|
|
|
| #include "platform.h"
|
| +#include "vm-state-inl.h"
|
|
|
|
|
| namespace v8 {
|
| @@ -619,11 +620,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();
|
|
|