32 lines
721 B
C++
32 lines
721 B
C++
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include "FuseThread.h"
|
|
#include <csignal>
|
|
|
|
#include "../../fuse/Fuse.h"
|
|
|
|
using std::thread;
|
|
using std::string;
|
|
|
|
using fspp::fuse::Fuse;
|
|
|
|
FuseThread::FuseThread(Fuse *fuse)
|
|
:_fuse(fuse), _child() {
|
|
}
|
|
|
|
void FuseThread::start(int argc, char *argv[]) {
|
|
_child = thread([this, argc, argv] () {
|
|
_fuse->run(argc, argv);
|
|
});
|
|
//Wait until it is running (busy waiting is simple and doesn't hurt much here)
|
|
while(!_fuse->running()) {}
|
|
}
|
|
|
|
void FuseThread::stop() {
|
|
pthread_kill(_child.native_handle(), SIGINT);
|
|
_child.join();
|
|
//Wait until it is properly shutdown (busy waiting is simple and doesn't hurt much here)
|
|
while (_fuse->running()) {}
|
|
}
|