lib: reverse order of bt_self_component_port_input_message_iterator::auto_seek_msgs...
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 26 Jun 2019 13:49:57 +0000 (09:49 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 27 Jun 2019 03:09:07 +0000 (23:09 -0400)
commit19e3b820610759ae071b2207dc1dda2c98fd53f8
tree3b8038f8487082d2119c502358015971d662dcac
parenta0207a9c287619c3e5bcfa38a971e0d3dac444d1
lib: reverse order of bt_self_component_port_input_message_iterator::auto_seek_msgs queue

The messages in this queue are in reverse chronological order, meaning
we push the incoming messages to the head and later consume them from
the tail.

It would be more expected (although functionally equivalent) to do the
opposite, so that the messages are in chronological order when iterating
the list in forward.

So this patch just swaps the push/pop calls around.

Change-Id: Id4892e12e064376e919647c0d8bb838156ef0fc5
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/1543
CI-Build: Philippe Proulx <eeppeliteloop@gmail.com>
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
src/lib/graph/iterator.c
This page took 0.024333 seconds and 4 git commands to generate.