From 976c5ef20aba6be4591824b7ee5e4451b29d9ac6 Mon Sep 17 00:00:00 2001 From: Omar Rizwan Date: Mon, 30 Nov 2020 16:01:56 -0800 Subject: start on refactor to eliminate layer of fs op handling --- fs/tabfs.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'fs') diff --git a/fs/tabfs.c b/fs/tabfs.c index f650632..1342481 100644 --- a/fs/tabfs.c +++ b/fs/tabfs.c @@ -1,3 +1,8 @@ +// This file should rarely need to be changed. (which is intentional, +// because it is a pain to program here, it's a pain to recompile and +// reload it, and it's a pain to debug it.) Most of the real meat of +// TabFS is on the extension side, not here. + #include #include #include @@ -238,7 +243,6 @@ static struct fuse_operations tabfs_filesystem_operations = { }; int main(int argc, char **argv) { - /* system("killall -9 tabfs"); */ char killcmd[1000]; sprintf(killcmd, "pgrep tabfs | grep -v %d | xargs kill -9", getpid()); system(killcmd); -- cgit v1.2.3