Skip to content

Commit

Permalink
[PROF-8667] Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexJF committed Jan 3, 2024
1 parent bd49938 commit 4e29094
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sig/datadog/profiling/stack_recorder.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ module Datadog
class StackRecorder
@no_concurrent_synchronize_mutex: ::Thread::Mutex

def initialize: (cpu_time_enabled: bool, alloc_samples_enabled: bool, heap_samples_enabled: bool, timeline_enabled: bool) -> void
def initialize: (
cpu_time_enabled: bool,
alloc_samples_enabled: bool,
heap_samples_enabled: bool,
heap_size_enabled: bool,
timeline_enabled: bool,
) -> void

def self._native_initialize: (
Datadog::Profiling::StackRecorder recorder_instance,
bool cpu_time_enabled,
bool alloc_samples_enabled,
bool heap_samples_enabled,
bool heap_size_enabled,
bool timeline_enabled,
) -> true

Expand Down

0 comments on commit 4e29094

Please sign in to comment.