Skip to content

Commit

Permalink
Tau - add new sp_link runtime inspection functions
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jan 5, 2023
1 parent fcf7c6d commit c966247
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/server/beam/tau/src/sp_link/sp_link.erl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-module(sp_link).
-export([init/0, init_nif/1, deinit_nif/0, enable/1, is_enabled/0, set_tempo/2, get_tempo/0, get_num_peers/0,
-export([init/0, is_nif_loaded/0, is_nif_initialized/0, init_nif/1, deinit_nif/0, enable/1, is_enabled/0, set_tempo/2, get_tempo/0, get_num_peers/0,
start_stop_sync_enable/1, is_start_stop_sync_enabled/0, set_is_playing/2, is_playing/0, get_time_for_is_playing/0,
get_beat_at_time/2, get_phase_at_time/2, get_time_at_beat/2, request_beat_at_time/3, force_beat_at_time/3,
request_beat_at_start_playing_time/2, set_is_playing_and_request_beat_at_time/4, set_callback_pid/1,
Expand All @@ -22,6 +22,10 @@ init() ->
end,
erlang:load_nif(SoName, 0).

is_nif_loaded() ->
false.
is_nif_initialized() ->
false.
init_nif(_) ->
done.
deinit_nif() ->
Expand Down

0 comments on commit c966247

Please sign in to comment.