postMessage back from browser. Kill other instances of fs.

Currently stuck not getting response to a getattr...
This commit is contained in:
Omar Rizwan 2020-10-22 06:47:00 -07:00
parent 64bd1f3948
commit 8bbcaf9343
2 changed files with 7 additions and 1 deletions

View file

@ -371,7 +371,7 @@ async function onMessage(req) {
/* console.timeEnd(req.op + ':' + req.path);*/
log('resp', response);
/* ws.send(JSON.stringify(response));*/
port.postMessage(response);
};
function tryConnect() {

View file

@ -230,6 +230,12 @@ 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);
system("diskutil umount force mnt > /dev/null");
FILE* log = fopen("log.txt", "w");
for (int i = 0; i < argc; i++) {
fprintf(log, "arg%d: [%s]\n", i, argv[i]); fflush(log);