Skip to content

Commit

Permalink
fix: remove conflict check for heap profiling
Browse files Browse the repository at this point in the history
PR-URL: #219
  • Loading branch information
hyj1991 authored Jan 11, 2023
1 parent 5d236be commit 623b0d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/dump.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ using v8::Isolate;
const char module_type[] = "dump_action";

const ConflictMap conflict_map = {
{START_CPU_PROFILING,
/**{START_CPU_PROFILING,
{START_SAMPLING_HEAP_PROFILING, STOP_SAMPLING_HEAP_PROFILING}},
{STOP_CPU_PROFILING,
{START_SAMPLING_HEAP_PROFILING, STOP_SAMPLING_HEAP_PROFILING}},
{HEAPDUMP, {START_SAMPLING_HEAP_PROFILING, STOP_SAMPLING_HEAP_PROFILING}},
{START_SAMPLING_HEAP_PROFILING,
{START_CPU_PROFILING, STOP_CPU_PROFILING, HEAPDUMP}},
{STOP_SAMPLING_HEAP_PROFILING,
{START_CPU_PROFILING, STOP_CPU_PROFILING, HEAPDUMP}}};
{START_CPU_PROFILING, STOP_CPU_PROFILING, HEAPDUMP}}**/};

const DependentMap dependent_map = {
{STOP_CPU_PROFILING, START_CPU_PROFILING},
Expand Down

0 comments on commit 623b0d2

Please sign in to comment.