Path: utzoo!attcan!uunet!lll-winken!ncis.llnl.gov!helios.ee.lbl.gov!pasteur!ucbvax!LUCID.COM!lnz From: lnz@LUCID.COM (Leonard N. Zubkoff) Newsgroups: comp.sys.apollo Subject: Re: X Windows and Apollo's Message-ID: <8903020138.AA02132@atlantis> Date: 2 Mar 89 01:38:17 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 17 Here is a likely reason the X11R2 server is slow on SR10.1. In gpr_tmgr.c you'll find the code: trait_$mgr_dcl (gpr_io_$uid, io_$trait, trait_$kind_local, &gpr_io_$epv, status); Change it to trait_$mgr_dcl(gpr_io_$uid,io_$trait, (trait_$kind_t)(1<<(int)trait_$kind_local), &gpr_io_$epv,status); The problem is that the original code is bogus, but was never checked until SR10.1. I had this same problem in a GPR type manager I use in GNU Emacs. Leonard