summaryrefslogtreecommitdiffstats
path: root/friendfinder/handler.h
diff options
context:
space:
mode:
authorPatrick Hornecker2009-12-23 16:11:38 +0100
committerPatrick Hornecker2009-12-23 16:11:38 +0100
commit9965b3f3134c9440244191435ace3e6e272ae67b (patch)
treea18fa2b146df965c842ad01bc0d382d2b1111b76 /friendfinder/handler.h
parentreceiver and sender added to handler, nearly clean exit, map added (diff)
downloadfriendfinder-9965b3f3134c9440244191435ace3e6e272ae67b.tar.gz
friendfinder-9965b3f3134c9440244191435ace3e6e272ae67b.tar.xz
friendfinder-9965b3f3134c9440244191435ace3e6e272ae67b.zip
more changes in threading of msg_sender, receiver and sender...not able to build BROKEN BROKEN BROKEN
Diffstat (limited to 'friendfinder/handler.h')
-rw-r--r--friendfinder/handler.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/friendfinder/handler.h b/friendfinder/handler.h
index bb3256b..6de03bd 100644
--- a/friendfinder/handler.h
+++ b/friendfinder/handler.h
@@ -4,10 +4,14 @@
/* starts postition sending */
void start_pos();
-/* inits all needed parts of ecore for the handlers */
-void init_ecore_handler(char *from, char *to);
+/* init threads */
+void init_msg_thread(char *from, char *to);
-/* shutdown all ecore handler parts */
-void shutdown_ecore_handler();
+void init_sender_thread(char *from);
+
+void init_receiver_thread(char *from);
+
+/* close all threads */
+void close_threads()
#endif