diff --git a/include/villas/node.h b/include/villas/node.h index 513fea222..25854f24c 100644 --- a/include/villas/node.h +++ b/include/villas/node.h @@ -124,31 +124,31 @@ int node_check(struct node *n); /** Start operation of a node. * - * @see node_type::open + * @see node_type::start */ int node_start(struct node *n); /** Stops operation of a node. * - * @see node_type::close + * @see node_type::stop */ int node_stop(struct node *n); /** Pauses operation of a node. * - * @see node_type::close + * @see node_type::stop */ int node_pause(struct node *n); /** Resumes operation of a node. * - * @see node_type::close + * @see node_type::stop */ int node_resume(struct node *n); /** Restarts operation of a node. * - * @see node_type::close + * @see node_type::stop */ int node_restart(struct node *n); diff --git a/include/villas/nodes/amqp.hpp b/include/villas/nodes/amqp.hpp index 8eb393073..8536e95d6 100644 --- a/include/villas/nodes/amqp.hpp +++ b/include/villas/nodes/amqp.hpp @@ -69,10 +69,10 @@ char * amqp_print(struct node *n); /** @see node_type::parse */ int amqp_parse(struct node *n, json_t *json); -/** @see node_type::open */ +/** @see node_type::start */ int amqp_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int amqp_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/comedi.hpp b/include/villas/nodes/comedi.hpp index 816af269b..52fce8ecc 100644 --- a/include/villas/nodes/comedi.hpp +++ b/include/villas/nodes/comedi.hpp @@ -86,10 +86,10 @@ char * comedi_print(struct node *n); /** @see node_type::parse */ int comedi_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int comedi_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int comedi_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/example.hpp b/include/villas/nodes/example.hpp index 658ff2016..4ef7c317c 100644 --- a/include/villas/nodes/example.hpp +++ b/include/villas/nodes/example.hpp @@ -69,10 +69,10 @@ int example_check(); /** @see node_type::prepare */ int example_prepare(); -/** @see node_type::open */ +/** @see node_type::start */ int example_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int example_stop(struct node *n); /** @see node_type::pause */ diff --git a/include/villas/nodes/exec.hpp b/include/villas/nodes/exec.hpp index 31a27d904..a8a00bae6 100644 --- a/include/villas/nodes/exec.hpp +++ b/include/villas/nodes/exec.hpp @@ -59,10 +59,10 @@ char * exec_print(struct node *n); /** @see node_type::parse */ int exec_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int exec_open(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int exec_close(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/file.hpp b/include/villas/nodes/file.hpp index 8272df152..7d82d6fe4 100644 --- a/include/villas/nodes/file.hpp +++ b/include/villas/nodes/file.hpp @@ -74,10 +74,10 @@ char * file_print(struct node *n); /** @see node_type::parse */ int file_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int file_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int file_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/infiniband.hpp b/include/villas/nodes/infiniband.hpp index 2e148e39b..82fe0e2a2 100644 --- a/include/villas/nodes/infiniband.hpp +++ b/include/villas/nodes/infiniband.hpp @@ -118,13 +118,13 @@ char * ib_print(struct node *n); /** @see node_type::parse */ int ib_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int ib_start(struct node *n); /** @see node_type::destroy */ int ib_destroy(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int ib_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/influxdb.hpp b/include/villas/nodes/influxdb.hpp index ba05ed2ad..4ca00ee82 100644 --- a/include/villas/nodes/influxdb.hpp +++ b/include/villas/nodes/influxdb.hpp @@ -54,10 +54,10 @@ char * influxdb_print(struct node *n); /** @see node_type::parse */ int influxdb_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int influxdb_open(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int influxdb_close(struct node *n); /** @see node_type::write */ diff --git a/include/villas/nodes/loopback.hpp b/include/villas/nodes/loopback.hpp index 214174c59..60b6ac4f9 100644 --- a/include/villas/nodes/loopback.hpp +++ b/include/villas/nodes/loopback.hpp @@ -52,10 +52,10 @@ char * loopback_print(struct node *n); /** @see node_type::parse */ int loopback_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int loopback_open(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int loopback_close(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/mqtt.hpp b/include/villas/nodes/mqtt.hpp index e3b754e43..cb22a00d4 100644 --- a/include/villas/nodes/mqtt.hpp +++ b/include/villas/nodes/mqtt.hpp @@ -75,13 +75,13 @@ char * mqtt_print(struct node *n); /** @see node_type::parse */ int mqtt_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int mqtt_start(struct node *n); /** @see node_type::destroy */ int mqtt_destroy(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int mqtt_stop(struct node *n); /** @see node_type::type_start */ diff --git a/include/villas/nodes/nanomsg.hpp b/include/villas/nodes/nanomsg.hpp index 621a63f09..aab279e9e 100644 --- a/include/villas/nodes/nanomsg.hpp +++ b/include/villas/nodes/nanomsg.hpp @@ -55,10 +55,10 @@ char * nanomsg_print(struct node *n); /** @see node_type::parse */ int nanomsg_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int nanomsg_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int nanomsg_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/ngsi.hpp b/include/villas/nodes/ngsi.hpp index e9f8a4a03..67f6f4847 100644 --- a/include/villas/nodes/ngsi.hpp +++ b/include/villas/nodes/ngsi.hpp @@ -82,10 +82,10 @@ int ngsi_parse(struct node *n, json_t *cfg); /** @see node_type::print */ char * ngsi_print(struct node *n); -/** @see node_type::open */ +/** @see node_type::start */ int ngsi_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int ngsi_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/opal.hpp b/include/villas/nodes/opal.hpp index 8a72c555a..2c5c716aa 100644 --- a/include/villas/nodes/opal.hpp +++ b/include/villas/nodes/opal.hpp @@ -73,10 +73,10 @@ char * opal_print(struct node *n); /** Print global settings of the OPAL node type. */ int opal_print_global(); -/** @see node_type::open */ +/** @see node_type::start */ int opal_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int opal_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/rtp.hpp b/include/villas/nodes/rtp.hpp index cee6c9717..a2d2d64e1 100644 --- a/include/villas/nodes/rtp.hpp +++ b/include/villas/nodes/rtp.hpp @@ -111,10 +111,10 @@ char * rtp_print(struct node *n); /** @see node_type::parse */ int rtp_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int rtp_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int rtp_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/socket.hpp b/include/villas/nodes/socket.hpp index 039615ef8..7d76dd237 100644 --- a/include/villas/nodes/socket.hpp +++ b/include/villas/nodes/socket.hpp @@ -71,10 +71,10 @@ int socket_type_start(villas::node::SuperNode *sn); /** @see node_type::type_stop */ int socket_type_stop(); -/** @see node_type::open */ +/** @see node_type::start */ int socket_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int socket_stop(struct node *n); /** @see node_type::write */ diff --git a/include/villas/nodes/test_rtt.hpp b/include/villas/nodes/test_rtt.hpp index 81a5d3d41..639b9681a 100644 --- a/include/villas/nodes/test_rtt.hpp +++ b/include/villas/nodes/test_rtt.hpp @@ -69,10 +69,10 @@ char * test_rtt_print(struct node *n); /** @see node_type::parse */ int test_rtt_parse(struct node *n, json_t *cfg); -/** @see node_type::open */ +/** @see node_type::start */ int test_rtt_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int test_rtt_stop(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/websocket.hpp b/include/villas/nodes/websocket.hpp index 8195b0501..aecf9421c 100644 --- a/include/villas/nodes/websocket.hpp +++ b/include/villas/nodes/websocket.hpp @@ -97,13 +97,13 @@ int websocket_type_start(villas::node::SuperNode *sn); /** @see node_type::type_stop */ int websocket_type_stop(); -/** @see node_type::open */ +/** @see node_type::start */ int websocket_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int websocket_stop(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int websocket_destroy(struct node *n); /** @see node_type::read */ diff --git a/include/villas/nodes/zeromq.hpp b/include/villas/nodes/zeromq.hpp index 7a71fe949..11d31284e 100644 --- a/include/villas/nodes/zeromq.hpp +++ b/include/villas/nodes/zeromq.hpp @@ -86,10 +86,10 @@ int zeromq_type_start(villas::node::SuperNode *sn); /** @see node_type::type_stop */ int zeromq_type_stop(); -/** @see node_type::open */ +/** @see node_type::start */ int zeromq_start(struct node *n); -/** @see node_type::close */ +/** @see node_type::stop */ int zeromq_stop(struct node *n); /** @see node_type::read */