aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-11-30 16:01:56 -0800
committerOmar Rizwan <omar.rizwan@gmail.com>2020-11-30 16:01:56 -0800
commit976c5ef20aba6be4591824b7ee5e4451b29d9ac6 (patch)
tree608c698525ecb8b230d1d8bc833e0a291967b217 /fs
parenta7e38dc258f368f33c3854348b4e9c18d17cbad9 (diff)
start on refactor to eliminate layer of fs op handling
Diffstat (limited to 'fs')
-rw-r--r--fs/tabfs.c6
1 files changed, 5 insertions, 1 deletions
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 <errno.h>
#include <fcntl.h>
#include <string.h>
@@ -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);