aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/fs.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2005-07-06 03:51:07 +0000
committerChristian Grothoff <christian@grothoff.org>2005-07-06 03:51:07 +0000
commit960dce6066522c8a9147806c7eb23cac6eaf5ff7 (patch)
treea17a0c2f2ab11a6584ce54d9833714ce1c730cfb /src/plugins/fs/fs.c
parenta16bbf60c55995d61433e45cdc2e51af620b802d (diff)
downloadgnunet-gtk-960dce6066522c8a9147806c7eb23cac6eaf5ff7.tar.gz
gnunet-gtk-960dce6066522c8a9147806c7eb23cac6eaf5ff7.zip
update
Diffstat (limited to 'src/plugins/fs/fs.c')
-rw-r--r--src/plugins/fs/fs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/fs/fs.c b/src/plugins/fs/fs.c
index 5884d857..b8dcdddb 100644
--- a/src/plugins/fs/fs.c
+++ b/src/plugins/fs/fs.c
@@ -30,6 +30,7 @@
30#include "download.h" 30#include "download.h"
31#include "search.h" 31#include "search.h"
32#include "upload.h" 32#include "upload.h"
33#include "collection.h"
33#include "namespace.h" 34#include "namespace.h"
34#include <GNUnet/gnunet_fsui_lib.h> 35#include <GNUnet/gnunet_fsui_lib.h>
35 36
@@ -140,6 +141,7 @@ void init_fs() {
140 YES, 141 YES,
141 &eventProcessor, 142 &eventProcessor,
142 NULL); 143 NULL);
144 fs_collection_start();
143 fs_search_start(); 145 fs_search_start();
144 fs_download_start(); 146 fs_download_start();
145 fs_upload_start(); 147 fs_upload_start();
@@ -155,6 +157,7 @@ void done_fs() {
155 fs_download_stop(); 157 fs_download_stop();
156 fs_search_stop(); 158 fs_search_stop();
157 fs_namespace_stop(); 159 fs_namespace_stop();
160 fs_collection_stop();
158 sig = SEMAPHORE_NEW(0); 161 sig = SEMAPHORE_NEW(0);
159 if (0 != PTHREAD_CREATE(&doneThread, 162 if (0 != PTHREAD_CREATE(&doneThread,
160 (PThreadMain)&shutdownCode, 163 (PThreadMain)&shutdownCode,