summaryrefslogtreecommitdiff
path: root/source3/lib/tevent_barrier.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-04-03 15:26:22 +0200
committerVolker Lendecke <vl@samba.org>2012-04-17 10:21:02 +0200
commitb23b35755750589b201a3f4e85521459f575945c (patch)
tree51133a6a732acd90809d9a327181721c51550cac /source3/lib/tevent_barrier.h
parentd705bae65b70f6fcc711bdb72a1c2b55395f7d6c (diff)
downloadsamba-b23b35755750589b201a3f4e85521459f575945c.tar.gz
samba-b23b35755750589b201a3f4e85521459f575945c.tar.bz2
samba-b23b35755750589b201a3f4e85521459f575945c.zip
s3: Implement tevent_barrier
This will help notify torture tests: A tevent barrier can be waited on with tevent_barrier_wait_send/recv. The barrier is initialized with a number of requests that it will accept waiting. When that number is reached, all those requests will be released and their callback will be called. The barrier will be free for re-use again.
Diffstat (limited to 'source3/lib/tevent_barrier.h')
-rw-r--r--source3/lib/tevent_barrier.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/source3/lib/tevent_barrier.h b/source3/lib/tevent_barrier.h
new file mode 100644
index 0000000000..2b358522d9
--- /dev/null
+++ b/source3/lib/tevent_barrier.h
@@ -0,0 +1,37 @@
+/*
+ Unix SMB/CIFS implementation.
+ Implement a barrier
+ Copyright (C) Volker Lendecke 2012
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef _TEVENT_BARRIER_H
+#define _TEVENT_BARRIER_H
+
+#include "talloc.h"
+#include "tevent.h"
+
+struct tevent_barrier;
+
+struct tevent_barrier *tevent_barrier_init(
+ TALLOC_CTX *mem_ctx, unsigned count,
+ void (*trigger_cb)(void *private_data), void *private_data);
+
+struct tevent_req *tevent_barrier_wait_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct tevent_barrier *b);
+int tevent_barrier_wait_recv(struct tevent_req *req);
+
+#endif /* _TEVENT_BARRIER_H */