summaryrefslogtreecommitdiffstats
path: root/src/server/JackDriver.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-09-11 15:21:25 +0200
committerDavid Robillard <d@drobilla.net>2016-09-11 15:21:25 +0200
commitf3546d49dbd2d673138387a87bc523c26dcece68 (patch)
treeede285a773fc565205f82a2b0a62ebba6ea552e0 /src/server/JackDriver.hpp
parentfb2744d4265d26fb98b19689b50d127f32c66eab (diff)
downloadingen-f3546d49dbd2d673138387a87bc523c26dcece68.tar.gz
ingen-f3546d49dbd2d673138387a87bc523c26dcece68.tar.bz2
ingen-f3546d49dbd2d673138387a87bc523c26dcece68.zip
Remove last vestiges of multiple run contexts
Diffstat (limited to 'src/server/JackDriver.hpp')
-rw-r--r--src/server/JackDriver.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/JackDriver.hpp b/src/server/JackDriver.hpp
index bf424623..a5422f6a 100644
--- a/src/server/JackDriver.hpp
+++ b/src/server/JackDriver.hpp
@@ -74,8 +74,8 @@ public:
void rename_port(const Raul::Path& old_path, const Raul::Path& new_path);
void port_property(const Raul::Path& path, const Raul::URI& uri, const Atom& value);
- void add_port(ProcessContext& context, EnginePort* port);
- void remove_port(ProcessContext& context, EnginePort* port);
+ void add_port(RunContext& context, EnginePort* port);
+ void remove_port(RunContext& context, EnginePort* port);
void register_port(EnginePort& port);
void unregister_port(EnginePort& port);
@@ -84,7 +84,7 @@ public:
inline const jack_position_t* position() { return &_position; }
inline jack_transport_state_t transport_state() { return _transport_state; }
- void append_time_events(ProcessContext& context,
+ void append_time_events(RunContext& context,
Buffer& buffer);
jack_client_t* jack_client() const { return _client; }
@@ -118,8 +118,8 @@ private:
}
#endif
- void pre_process_port(ProcessContext& context, EnginePort* port);
- void post_process_port(ProcessContext& context, EnginePort* port);
+ void pre_process_port(RunContext& context, EnginePort* port);
+ void post_process_port(RunContext& context, EnginePort* port);
void port_property_internal(const jack_port_t* jport,
const Raul::URI& uri,