Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions extensions/abl_link/include/abl_link.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ extern "C"

/*! @brief: Is start/stop synchronization enabled?
* Thread-safe: yes
* Realtime-safe: no
* Realtime-safe: yes
*/
bool abl_link_is_start_stop_sync_enabled(abl_link link);

/*! @brief: Enable start/stop synchronization.
* Thread-safe: yes
* Realtime-safe: no
* Realtime-safe: yes
*/
void abl_link_enable_start_stop_sync(abl_link link, bool enabled);

Expand Down Expand Up @@ -209,8 +209,8 @@ extern "C"
abl_link link, abl_link_session_state session_state);

/*! @brief Capture the current Link Session State from an application thread.
* Thread-safe: no
* Realtime-safe: yes
* Thread-safe: yes
* Realtime-safe: no
*
* @discussion Provides a mechanism for capturing the Link Session State from an
* application thread (other than the audio thread). After capturing the session_state
Expand Down
4 changes: 2 additions & 2 deletions include/ableton/Link.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ class BasicLink

/*! @brief: Is start/stop synchronization enabled?
* Thread-safe: yes
* Realtime-safe: no
* Realtime-safe: yes
*/
bool isStartStopSyncEnabled() const;

/*! @brief: Enable start/stop synchronization.
* Thread-safe: yes
* Realtime-safe: no
* Realtime-safe: yes
*/
void enableStartStopSync(bool bEnable);

Expand Down