diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-04-24 21:15:59 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-04-24 21:15:59 +0200 |
commit | 614b18484cb754c4ba936d143016b558845073b1 (patch) | |
tree | 5679f500709faf657854ee9f1232b9b90ea95b6a /acme/bin/source | |
parent | 4fb7462bd53daffa8376a752cc06ad7cacfa85a9 (diff) | |
download | plan9front-614b18484cb754c4ba936d143016b558845073b1.tar.xz |
acme/win: exit winfs once acme shuts down the window
Diffstat (limited to 'acme/bin/source')
-rw-r--r-- | acme/bin/source/win/win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acme/bin/source/win/win.c b/acme/bin/source/win/win.c index 1fdd9bb9f..770b0e38c 100644 --- a/acme/bin/source/win/win.c +++ b/acme/bin/source/win/win.c @@ -85,7 +85,7 @@ wingetec(Window *w) w->nbuf = read(w->event, w->buf, sizeof w->buf); if(w->nbuf <= 0){ /* probably because window has exited, and only called by wineventproc, so just shut down */ - threadexits(nil); + threadexitsall(nil); } w->bufp = w->buf; } |