commit 78802e6993a0f44d7ac7ff7d0922d55d1b089dac from: rsc date: Sat Apr 24 04:52:49 2004 UTC various bug fixes commit - 272fd660b41d7ec793bc9d8972878510f3b66055 commit + 78802e6993a0f44d7ac7ff7d0922d55d1b089dac blob - e0d80ee4704bb349d424b692b0bfedea0bc7bd89 blob + 9a18c443e28ac5ec7b1a491678e347651ce369d2 --- CHANGES +++ CHANGES @@ -1,3 +1,11 @@ +April 23, 2004 + + fix B to handle non-existent files properly + + add stats + + various 9term/rio fixes from axel belinfante + April 21, 2004 add bc, units, mtime, primes, news blob - bc387b25a204ea12199cfedf9e04b4a0ea12b527 blob + c320d9463bb7e333be5decab183b3d8fba4bcbb0 --- bin/9c +++ bin/9c @@ -35,6 +35,7 @@ case "$tag" in u=`uname` v=`uname -r` s=`echo $u$v | tr '. ' '__'` + cflags="$ngflags -g" cflags="$cflags -D__$s__" ;; *) @@ -42,4 +43,13 @@ case "$tag" in exit 1 esac -exec $cc -I$PLAN9/include $cflags "$@" +case "$tag" in +*SunOS*-cc) + exec $cc -I$PLAN9/include $cflags "$@" | + /bin/sed 's/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' + ;; +*) + exec $cc -I$PLAN9/include $cflags "$@" + ;; +esac + blob - 9124f9391ad15a62117a63cdd2968cdf4c2aa88d blob + ec4c6b27c83ee9d6f742a0b20a3329bddab686e8 --- man/man1/stats.1 +++ man/man1/stats.1 @@ -176,12 +176,14 @@ and a remote BSD machine stats -lmisce `hostname` tux:/usr/local/plan9/bin/auxstats daemon .SH SOURCE .B /usr/local/plan9/src/cmd/draw/stats.c +.PP +.B /usr/local/plan9/src/cmd/auxstats .SH BUGS The .I auxstats binary needs read access to .B /dev/kmem -in order to collect network statistics on BSD systems. +in order to collect network statistics on non-Linux systems. Typically this can be arranged by setting the .I auxstat binary's blob - df27261d8c591de9b59bdcabca5c317596bffcba blob + a77dc32b0ce858cbf4023b47342b118f915db9af --- src/cmd/9term/9term.c +++ src/cmd/9term/9term.c @@ -544,9 +544,13 @@ mouse(void) domenu2(2); break; case 4: + bouncemouse(&t.m); + break; + /* if(aselect(&q0, &q1, plumbcolor) >= 0) plumb(q0, q1); break; + */ } } blob - 06e9d422d4195a0422158e7a2e744a72c8a787d7 blob + d4c2a29c3fb17fa17bcf963c86582d6888372481 --- src/cmd/auxstats/Linux.c +++ src/cmd/auxstats/Linux.c @@ -55,6 +55,7 @@ xmeminfo(int first) { int i; vlong tot, used; + vlong mtot, mfree; static int fd = -1; if(first){ @@ -63,9 +64,10 @@ xmeminfo(int first) } readfile(fd); + mtot = 0; for(i=0; iatom; @@ -378,6 +379,15 @@ property(XPropertyEvent *e) case XA_WM_TRANSIENT_FOR: gettrans(c); return; + case XA_WM_HINTS: + case XA_WM_SIZE_HINTS: + case XA_WM_ZOOM_HINTS: + /* placeholders to not forget. ignore for now. -Axel */ + return; + case XA_WM_NORMAL_HINTS: + if (XGetWMNormalHints(dpy, c->window, &c->size, &msize) == 0 || c->size.flags == 0) + c->size.flags = PSize; /* not specified - punt */ + return; } if (a == _rio_hold_mode) { c->hold = getiprop(c->window, _rio_hold_mode); @@ -404,7 +414,12 @@ reparent(XReparentEvent *e) if ((s = getscreen(e->parent)) != 0) { c = getclient(e->window, 1); if (c != 0 && (c->dx == 0 || c->dy == 0)) { + /* flush any errors */ + ignore_badwindow = 1; XGetWindowAttributes(dpy, c->window, &attr); + XSync(dpy, False); + ignore_badwindow = 0; + c->x = attr.x; c->y = attr.y; c->dx = attr.width; blob - 2c8f71c708ebb5fbceaa58fa98bb96471619991e blob + 11892a0638596907ed77d875b9afe6885245f67a --- src/cmd/rio/manage.c +++ src/cmd/rio/manage.c @@ -359,8 +359,11 @@ getcmaps(Client *c) XWindowAttributes attr; if (!c->init) { + ignore_badwindow = 1; XGetWindowAttributes(dpy, c->window, &attr); c->cmap = attr.colormap; + XSync(dpy, False); + ignore_badwindow = 0; } n = _getprop(c->window, wm_colormaps, XA_WINDOW, 100L, (void*)&cw); @@ -381,9 +384,13 @@ getcmaps(Client *c) if (cw[i] == c->window) c->wmcmaps[i] = c->cmap; else { + /* flush any errors (e.g., caused by mozilla tabs) */ + ignore_badwindow = 1; XSelectInput(dpy, cw[i], ColormapChangeMask); XGetWindowAttributes(dpy, cw[i], &attr); c->wmcmaps[i] = attr.colormap; + XSync(dpy, False); + ignore_badwindow = 0; } } } blob - df5bf7e9165224c7465b904281a39e12eee9d3eb blob + 4827423c02eacdd731e193e4fda3b3dc41b9cbc1 --- src/libdraw/x11-mouse.c +++ src/libdraw/x11-mouse.c @@ -149,13 +149,21 @@ setcursor(Mousectl *mc, Cursor *c) _xsetcursor(c); } +/* + * Send the mouse event back to the window manager. + * So that 9term can tell rio to pop up its button3 menu. + * Note that we're using _x.mousecon in a few places, + * so we have to be sure that the mouse proc isn't using it + * when we call! This is all a bit wonky and should be + * avoided unless you know what you're doing. + */ void bouncemouse(Mouse *m) { XButtonEvent e; + XWindow dw; e.type = ButtonPress; - e.window = DefaultRootWindow(_x.display); e.state = 0; e.button = 0; if(m->buttons&1) @@ -164,10 +172,18 @@ bouncemouse(Mouse *m) e.button = 2; else if(m->buttons&4) e.button = 3; - e.x = m->xy.x; - e.y = m->xy.y; + e.same_screen = 1; + XTranslateCoordinates(_x.display, _x.drawable, + DefaultRootWindow(_x.display), + m->xy.x, m->xy.y, &e.x_root, &e.y_root, &dw); + e.root = DefaultRootWindow(_x.mousecon); + e.window = e.root; + e.subwindow = None; + e.x = e.x_root; + e.y = e.y_root; #undef time e.time = CurrentTime; - XSendEvent(_x.display, e.window, True, ButtonPressMask, (XEvent*)&e); - XFlush(_x.display); + XUngrabPointer(_x.mousecon, m->msec); + XSendEvent(_x.mousecon, e.root, True, ButtonPressMask, (XEvent*)&e); + XFlush(_x.mousecon); } blob - 4b2786955cb006ce47083802e184ea2b5e0348fd blob + 670059cae7b0960933b42d767eb9c6ed3b85a954 --- src/libplumb/mesg.c +++ src/libplumb/mesg.c @@ -64,6 +64,10 @@ plumbsendtofid(Fid *fid, Plumbmsg *m) char *buf; int n; + if(fid == nil){ + werrstr("invalid fid"); + return -1; + } buf = plumbpack(m, &n); if(buf == nil) return -1; @@ -75,6 +79,10 @@ plumbsendtofid(Fid *fid, Plumbmsg *m) int plumbsend(int fd, Plumbmsg *m) { + if(fd == -1){ + werrstr("invalid fd"); + return -1; + } if(fd != pfd){ werrstr("fd is not the plumber"); return -1;