Skip to content

Commit

Permalink
Add tracer bytes/count functions
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Oct 16, 2024
1 parent af35e65 commit 97e4b6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/AwsIO.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ function trace_memory!(mem_trace_level=AWS_MEMTRACE_BYTES)
return
end

function trace_memory_dump()
aws_mem_tracer_dump(LibAwsCommon.default_aws_allocator())
end
trace_memory_dump() = aws_mem_tracer_dump(LibAwsCommon.default_aws_allocator())
trace_memory_bytes() = aws_mem_tracer_bytes(LibAwsCommon.default_aws_allocator())
trace_memory_count() = aws_mem_tracer_count(LibAwsCommon.default_aws_allocator())

function __init__()
allocator = default_aws_allocator()
Expand Down

0 comments on commit 97e4b6e

Please # to comment.