X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Flib%2Fgraph%2Fconnection.h;h=dbc888e1a646c161f7ba9278415847ed2aab68ed;hb=5155b005cfadade509649b8f9a3bf2c055c6edfd;hp=2024244ddf3e6884903dde8b1b9d5d4c0bf386e2;hpb=9a2c8b8e0cb6579066b4b8ceb8255cdd5175bb2d;p=babeltrace.git diff --git a/src/lib/graph/connection.h b/src/lib/graph/connection.h index 2024244d..dbc888e1 100644 --- a/src/lib/graph/connection.h +++ b/src/lib/graph/connection.h @@ -1,36 +1,20 @@ -#ifndef BABELTRACE_GRAPH_CONNECTION_INTERNAL_H -#define BABELTRACE_GRAPH_CONNECTION_INTERNAL_H - /* + * SPDX-License-Identifier: MIT + * * Copyright 2017-2018 Philippe Proulx * Copyright 2017 Jérémie Galarneau - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. */ -#include +#ifndef BABELTRACE_GRAPH_CONNECTION_INTERNAL_H +#define BABELTRACE_GRAPH_CONNECTION_INTERNAL_H + +#include #include "lib/object.h" #include "common/assert.h" #include "common/macros.h" #include -#include "message/iterator.h" +#include "iterator.h" struct bt_graph; @@ -61,15 +45,12 @@ struct bt_connection { bool notified_graph_ports_connected; }; -BT_HIDDEN struct bt_connection *bt_connection_create(struct bt_graph *graph, struct bt_port *upstream_port, struct bt_port *downstream_port); -BT_HIDDEN void bt_connection_end(struct bt_connection *conn, bool try_remove_from_graph); -BT_HIDDEN void bt_connection_remove_iterator(struct bt_connection *conn, struct bt_message_iterator *iterator);