Re: [9fans] acid -k

2015-03-31 Thread cinap_lenrek
theres kinit() in -lkernel which prints the rc() acid command that generate the .acid files it needs. (besides initializing some variables) -- cinap

[9fans] mips linker hoisting stack freeing operation

2015-03-31 Thread cinap_lenrek
Point Pt(int x, int y) { int buf[1000]; /* added for demonstration */ Point p; buf[0] = x; p.x = x; p.y = y; return p; } vc -S compiler output looks ok, but i dont quite understand why it doesnt

Re: [9fans] p9p mouse problem

2015-03-31 Thread Steve Simon
There was a hook to allow you to use 2 button mice with plan9 which used (as I remember) the shift key to make button 3 bring up the menu normally used for button 2. I cannot make this work any more but I have a usb mouse and keyboard, perhaps it was a feature of the PS2 mouse/keyboard drievr?

Re: [9fans] p9p mouse problem

2015-03-31 Thread Rudolf Sykora
Hi everybody, On 18 February 2015 at 11:14, Rudolf Sykora rudolf.syk...@gmail.com wrote: I now encounter a problem with my mouse in plan9port. Every now and then it happens that my left button starts to behave as the right button. What helps is pressing a ctrl key on the keyboard: immediately

[9fans] puzzling 9P server / 9pcon interaction

2015-03-31 Thread Skip Tavakkolian
i'm trying to test a new 9P fs with 9pcon. after posting the file server's fd to /srv, it can be mounted (e.g. mount /srv/foo /n/foo) and walked correctly. trying 9pcon on the same fd (e.g. aux/9pcon /srv/foo) results in inappropriate use of fd. any ideas? fyi, the 9p code is from scartch based

Re: [9fans] acid -k

2015-03-31 Thread Tharaneedharan Vilwanathan
Hi Steve, I remember using acid for debugging inferno kernel rather than plan 9. Regards dharani On Tue, Mar 31, 2015 at 3:27 PM, Steve Simon st...@quintile.net wrote: hi, Trying to debug a driver using acid. none of the mkfiles in /sys/src/9 contain rules to make .acid files, why?

[9fans] acid -k

2015-03-31 Thread Steve Simon
hi, Trying to debug a driver using acid. none of the mkfiles in /sys/src/9 contain rules to make .acid files, why? Does noone use acid -k -l kernel ? is there a way to generate these files I have missed? -Steve (confused of Winchester).