summaryrefslogtreecommitdiff
path: root/src/irmd/irm_flow.c
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-27 15:25:08 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-27 15:38:36 +0200
commit5e8400b3b148d78861152bd551800b1e93a58155 (patch)
treecdb3625d3c858d08bbccd4a69881933712b5f464 /src/irmd/irm_flow.c
parent6c2164a59ce4d3ed91a65326ac89bb247e9f622f (diff)
downloadouroboros-5e8400b3b148d78861152bd551800b1e93a58155.tar.gz
ouroboros-5e8400b3b148d78861152bd551800b1e93a58155.zip
irmd: Fix cleanup of pending flows
Diffstat (limited to 'src/irmd/irm_flow.c')
-rw-r--r--src/irmd/irm_flow.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/irmd/irm_flow.c b/src/irmd/irm_flow.c
index dc5d22d8..ac854832 100644
--- a/src/irmd/irm_flow.c
+++ b/src/irmd/irm_flow.c
@@ -26,6 +26,7 @@
#include <stdlib.h>
#include <stdbool.h>
+#include <assert.h>
struct irm_flow * irm_flow_create()
{
@@ -59,6 +60,8 @@ struct irm_flow * irm_flow_create()
void irm_flow_destroy(struct irm_flow * f)
{
+ assert(f);
+
pthread_mutex_lock(&f->state_lock);
if (f->state == FLOW_DESTROY) {
@@ -91,6 +94,8 @@ enum flow_state irm_flow_get_state(struct irm_flow * f)
{
enum flow_state state;
+ assert(f);
+
pthread_mutex_lock(&f->state_lock);
state = f->state;
@@ -102,6 +107,10 @@ enum flow_state irm_flow_get_state(struct irm_flow * f)
void irm_flow_set_state(struct irm_flow * f, enum flow_state state)
{
+ assert(f);
+ assert(state != FLOW_NULL);
+ assert(state != FLOW_DESTROY);
+
pthread_mutex_lock(&f->state_lock);
f->state = state;
@@ -112,6 +121,10 @@ void irm_flow_set_state(struct irm_flow * f, enum flow_state state)
enum flow_state irm_flow_wait_state(struct irm_flow * f, enum flow_state state)
{
+ assert(f);
+ assert(state != FLOW_NULL);
+ assert(state != FLOW_DESTROY);
+
pthread_mutex_lock(&f->state_lock);
while (!(f->state == state || f->state == FLOW_DESTROY))