* Check if '-msoft-float' option is supported by compiler when
configuring for a 2.4.x kernel. Bug report by Mark Haney
+ * In multithreaded loop send a TERM signal to the main thread if
+ one of the other threads exit. Needed on FreeBSD for a clean exit
+ on umount. Should not cause any harm on Linux either
+
2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
* Fix bug in 32-bit file handle compatibility
struct fuse_chan *ch;
struct fuse_chan *prevch;
pthread_t threads[FUSE_MAX_WORKERS];
+ pthread_t main_thread;
int exit;
int error;
};
static void *do_work(void *data)
{
struct fuse_worker *w = (struct fuse_worker *) data;
- int is_mainthread = (w->numworker == 1);
size_t bufsize = fuse_chan_bufsize(w->prevch);
char *buf = (char *) malloc(bufsize);
if (!buf) {
}
pthread_cleanup_pop(1);
- /* Wait for cancellation */
- if (!is_mainthread)
+ if (pthread_self() != w->main_thread) {
+ pthread_kill(w->main_thread, SIGTERM);
pause();
+ }
return NULL;
}
w->error = 0;
w->numworker = 1;
w->numavail = 1;
+ w->main_thread = pthread_self();
mutex_init(&w->lock);
do_work(w);