bt2: by-pass distutils changed file check
[babeltrace.git] / include / babeltrace / graph / port-internal.h
index 3a277674961139b7d96f48c36260e0ea9a1990f4..f4d4c0367b3b20b306e32bcd2eb2e95ebd9147c1 100644 (file)
 
 #include <babeltrace/graph/port.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 struct bt_port {
        struct bt_object base;
        enum bt_port_type type;
@@ -42,7 +38,7 @@ struct bt_port {
 };
 
 static inline
-struct bt_port *bt_port_from_private(
+struct bt_port *bt_port_borrow_from_private(
                struct bt_private_port *private_port)
 {
        return (void *) private_port;
@@ -57,14 +53,25 @@ struct bt_private_port *bt_private_port_from_port(
 
 BT_HIDDEN
 struct bt_port *bt_port_create(struct bt_component *parent_component,
-               enum bt_port_type type, const char *name);
+               enum bt_port_type type, const char *name, void *user_data);
 
 BT_HIDDEN
 void bt_port_set_connection(struct bt_port *port,
                struct bt_connection *connection);
 
-#ifdef __cplusplus
+static inline
+const char *bt_port_type_string(enum bt_port_type port_type)
+{
+       switch (port_type) {
+       case BT_PORT_TYPE_INPUT:
+               return "BT_PORT_TYPE_INPUT";
+       case BT_PORT_TYPE_OUTPUT:
+               return "BT_PORT_TYPE_OUTPUT";
+       case BT_PORT_TYPE_UNKOWN:
+               return "BT_PORT_TYPE_UNKOWN";
+       default:
+               return "(unknown)";
+       }
 }
-#endif
 
 #endif /* BABELTRACE_COMPONENT_PORT_INTERNAL_H */
This page took 0.034518 seconds and 4 git commands to generate.