aboutsummaryrefslogtreecommitdiff
path: root/src/core/pipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/pipe.h')
-rw-r--r--src/core/pipe.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/core/pipe.h b/src/core/pipe.h
index d12320b2..3c2c1166 100644
--- a/src/core/pipe.h
+++ b/src/core/pipe.h
@@ -27,13 +27,8 @@ struct nng_pipe {
nni_endpt * p_ep;
int p_reap;
int p_active;
- int p_abort;
- nni_mutex p_mx;
- nni_cond p_cv;
- void (*p_send)(void *);
- void (*p_recv)(void *);
- nni_thread * p_send_thr;
- nni_thread * p_recv_thr;
+ nni_thr p_send_thr;
+ nni_thr p_recv_thr;
};
// Pipe operations that protocols use.