summaryrefslogtreecommitdiff
path: root/src/ivyloop.h
diff options
context:
space:
mode:
authorbustico2008-03-21 09:03:34 +0000
committerbustico2008-03-21 09:03:34 +0000
commit6ca781b8a38474ab428d5fcb3b489dfe3e974334 (patch)
tree8c8725c88c3fd031d632a9f2b1f7376d1cb3c75b /src/ivyloop.h
parent50236114f04a0050625bedee7c4c02b36b1213ae (diff)
downloadivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.zip
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.gz
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.bz2
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.xz
- numerous fixes
- socket in non blocking mode (resolve some deadlock, and agent are immune to another agent beeing blocked)
Diffstat (limited to 'src/ivyloop.h')
-rw-r--r--src/ivyloop.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ivyloop.h b/src/ivyloop.h
index f272212..63e30f3 100644
--- a/src/ivyloop.h
+++ b/src/ivyloop.h
@@ -56,6 +56,8 @@ extern void IvyMainLoop(void);
typedef void ( *IvyHookPtr) ( void *data );
+extern void IvyChannelAddWritableEvent(Channel channel);
+extern void IvyChannelClearWritableEvent(Channel channel);
extern void IvySetBeforeSelectHook(IvyHookPtr before, void *data );
extern void IvySetAfterSelectHook(IvyHookPtr after, void *data );