summaryrefslogtreecommitdiff
path: root/src/ivyloop.h
diff options
context:
space:
mode:
authorchatty1999-01-08 10:32:55 +0000
committerchatty1999-01-08 10:32:55 +0000
commit862c79e17a75e38a85687534fa0d38f43236c604 (patch)
tree7cf503250273515067219235263245194c7cb8c7 /src/ivyloop.h
parentb2d8c1c820685fe92fa4667a694fe4947b216685 (diff)
downloadivy-c-862c79e17a75e38a85687534fa0d38f43236c604.zip
ivy-c-862c79e17a75e38a85687534fa0d38f43236c604.tar.gz
ivy-c-862c79e17a75e38a85687534fa0d38f43236c604.tar.bz2
ivy-c-862c79e17a75e38a85687534fa0d38f43236c604.tar.xz
Bus -> Ivy
Simplified management of different versions of channel management. SetChannelManagement has disappeared.
Diffstat (limited to 'src/ivyloop.h')
-rw-r--r--src/ivyloop.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ivyloop.h b/src/ivyloop.h
index 9dbb52d..9aa3bc9 100644
--- a/src/ivyloop.h
+++ b/src/ivyloop.h
@@ -2,7 +2,7 @@
*
* Ivy, C interface
*
- * Copyright 1997-1998
+ * Copyright 1997-1999
* Centre d'Etudes de la Navigation Aerienne
*
* Main loop based on select
@@ -31,18 +31,18 @@ extern "C" {
#define HANDLE int
#endif
-extern void BusLoopChannelInit(void);
-extern void BusLoopChannelStop(void);
-extern void BusLoopChannelMainLoop(void(*hook)(void) );
+extern void IvyChannelInit(void);
+extern void IvyChannelStop(void);
+extern void IvyMainLoop(void(*hook)(void) );
-extern Channel BusLoopChannelSetUp(
- HANDLE fd,
- void *data,
- ChannelHandleDelete handle_delete,
- ChannelHandleRead handle_read
- );
+extern Channel IvyChannelSetUp(
+ HANDLE fd,
+ void *data,
+ ChannelHandleDelete handle_delete,
+ ChannelHandleRead handle_read
+);
-extern void BusLoopChannelClose( Channel channel );
+extern void IvyChannelClose( Channel channel );
#ifdef __cplusplus