Javadoc fixes
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 13 May 2015 22:06:45 +0000 (18:06 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 16:54:30 +0000 (12:54 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/plugin/plugin-internal.h
include/babeltrace/plugin/plugin.h

index 93c9c525e98544ffa0bf84ad6ba43568f834bd78..83654c17d54e436e14b71c4f43d02d64b168f584 100644 (file)
@@ -40,7 +40,7 @@ struct bt_plugin {
        GString *name;
        enum bt_plugin_type type;
 
-       /* Plug-in specific callbacks */
+       /* Plug-in implementation callbacks */
        bt_plugin_destroy_cb destroy;
        bt_plugin_set_error_stream_cb set_error_stream;
 };
index 8134074da909fc45b9062648a36df337c35bf8dc..9e5c9a87577d6a843c4d35e7eeb7fc9d46cdba63 100644 (file)
@@ -39,13 +39,13 @@ extern "C" {
 enum bt_plugin_type {
        BT_PLUGIN_TYPE_UNKNOWN =        -1,
 
-       /* A source plug-in is a notification generator. */
+       /** A source plug-in is a notification generator. */
        BT_PLUGIN_TYPE_SOURCE =         0,
 
-       /* A sink plug-in handles incoming notifications. */
+       /** A sink plug-in handles incoming notifications. */
        BT_PLUGIN_TYPE_SINK =           1,
 
-       /* A filter plug-in implements both Source and Sink interfaces. */
+       /** A filter plug-in implements both Source and Sink interfaces. */
        BT_PLUGIN_TYPE_FILTER =         2,
 };
 
@@ -53,21 +53,21 @@ enum bt_plugin_type {
  * Status code. Errors are always negative.
  */
 enum bt_plugin_status {
-       /** Memory allocation failure. **/
+       /** Memory allocation failure. */
        /* -12 for compatibility with -ENOMEM */
        BT_PLUGIN_STATUS_NOMEM =        -12,
 
-       /** Invalid arguments. **/
+       /** Invalid arguments. */
        /* -22 for compatibility with -EINVAL */
        BT_PLUGIN_STATUS_INVAL =        -22,
 
-       /** Unsupported plug-in feature. **/
+       /** Unsupported plug-in feature. */
        BT_PLUGIN_STATUS_UNSUPPORTED =  -2,
 
-       /** General error. **/
+       /** General error. */
        BT_PLUGIN_STATUS_ERROR =        -1,
 
-       /** No error, okay. **/
+       /** No error, okay. */
        BT_PLUGIN_STATUS_OK =           0,
 }
 
This page took 0.025414 seconds and 4 git commands to generate.