Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing committed Jun 26, 2024
1 parent a5abe67 commit 964c11a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/API.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ next_hwc_set() = FFI.Extrae_next_hwc_set()
Select the range of tasks (not threads!) to store information from in the tracefile.
"""
set_tracing_tasks(interval::UnitRange{UInt32}) =
FFI.Extrae_set_tracing_tasks(interval.start::UInt32, interval.stop::UInt32)
function set_tracing_tasks(interval::UnitRange{UInt32})
return FFI.Extrae_set_tracing_tasks(interval.start, interval.stop)
end

"""
setoption(options)
Expand Down

0 comments on commit 964c11a

Please sign in to comment.