#include <time.h>
#include <pthread.h>
#include <poll.h>
+#include <stdbool.h>
/*
* fsel_open_mask is used to limit the number of opens to 1 per file.
static unsigned fsel_poll_notify_mask; /* poll notification scheduled? */
static struct fuse_pollhandle *fsel_poll_handle[FSEL_FILES]; /* poll notify handles */
static unsigned fsel_cnt[FSEL_FILES]; /* nbytes stored in each file */
+static _Atomic bool fsel_stop = false;
+static pthread_t fsel_producer_thread;
+
static int fsel_path_index(const char *path)
{
return ch <= '9' ? ch - '0' : ch - 'A' + 10;
}
+static void fsel_destroy(void *private_data)
+{
+ (void)private_data;
+
+ fsel_stop = true;
+
+ pthread_join(fsel_producer_thread, NULL);
+}
+
static int fsel_getattr(const char *path, struct stat *stbuf,
struct fuse_file_info *fi)
{
}
static const struct fuse_operations fsel_oper = {
+ .destroy = fsel_destroy,
.getattr = fsel_getattr,
.readdir = fsel_readdir,
.open = fsel_open,
(void) data;
- while (1) {
+ while (!fsel_stop) {
int i, t;
pthread_mutex_lock(&fsel_mutex);
int main(int argc, char *argv[])
{
- pthread_t producer;
pthread_attr_t attr;
int ret;
return 1;
}
- errno = pthread_create(&producer, &attr, fsel_producer, NULL);
+ errno = pthread_create(&fsel_producer_thread, &attr, fsel_producer, NULL);
if (errno) {
perror("pthread_create");
return 1;
ret = fuse_main(argc, argv, &fsel_oper, NULL);
- pthread_cancel(producer);
- pthread_join(producer, NULL);
-
return ret;
}