From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Mon, 1 Mar 2010 09:32:55 -0500 To: 9fans@9fans.net Message-ID: <550d59dafea392fb34f04d1dd8cd3457@ladd.quanstro.net> In-Reply-To: References: <206689.1708.qm@web1208.biz.mail.gq1.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] P9p on Fedora 12 Topicbox-Message-UUID: de057730-ead5-11e9-9d60-3106f5b1d025 > That is true. > But muxrpc error is also there. A consequence? > > [pavel]$ 9term rc > usage: devdraw (don't run directly) > 9term: initdraw: muxrpc: unexpected eof dennis was right. print statements are often the best way to debug a problem. why don't you temporarly hack devdraw with something like the following in main before ARGBEGIN fprint(2, "devdraw args: " for(int i = 0; i < argc; i+) fprint(2, "%s ", argv[i]); fprint(2, "\n"); perhaps this output will give you some more ideas. if you're a bit unfamiliar with the code (or just don't remember), the second best debugging tool is grep. i don't immediately recall, but i would imagine that libdraw is starting devdraw. i suspect a well-executed pincer manover with print and grep will quickly rout this bug. - erik