mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
node_type: fix refactoring mistake
This commit is contained in:
parent
3bf4eeabad
commit
18ebd41249
18 changed files with 40 additions and 40 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue