diff options
| author | Omar Rizwan <omar.rizwan@gmail.com> | 2020-11-30 16:01:56 -0800 | 
|---|---|---|
| committer | Omar Rizwan <omar.rizwan@gmail.com> | 2020-11-30 16:01:56 -0800 | 
| commit | 976c5ef20aba6be4591824b7ee5e4451b29d9ac6 (patch) | |
| tree | 608c698525ecb8b230d1d8bc833e0a291967b217 /fs | |
| parent | a7e38dc258f368f33c3854348b4e9c18d17cbad9 (diff) | |
start on refactor to eliminate layer of fs op handling
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/tabfs.c | 6 | 
1 files changed, 5 insertions, 1 deletions
@@ -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);  | 
