From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Fri, 11 Jun 2004 09:51:30 -0400 From: Richard C Bilson Message-Id: <200406111351.i5BDpUU20806@plg2.math.uwaterloo.ca> To: 9fans@cse.psu.edu Subject: Re: [9fans] any success with current plan9port on sunos5.8? Topicbox-Message-UUID: 9b86ad64-eacd-11e9-9e20-41e7f4b1d025 > From: Axel Belinfante > > Just curious: has anyone had any luck with the > current plan9 ports package on sunos 5.8? > (I read that Bengt has problems too, and that > for Russ it works (fine?) on 5.9, correct?) Well, I had to comment out some stuff that doesn't work and rename a few symbols, but in large part it works. I believe Bengt already described most of these problems. I'm typing this in acme right now. I do notice that among my diffs that at one point I played with the stack size. I don't know whether a larger stack is actually necessary, but I do know that most of the SunOS problems I've had have come down to one stack or another being too small. Index: cmd/acme/dat.h =================================================================== RCS file: /cvs/plan9/src/cmd/acme/dat.h,v retrieving revision 1.7 diff -r1.7 dat.h 549c549 < #define STACK 32768 --- > #define STACK 65536 Index: libthread/main.c =================================================================== RCS file: /cvs/plan9/src/libthread/main.c,v retrieving revision 1.9 diff -r1.9 main.c 47c47 < mainstacksize = 32*1024; --- > mainstacksize = 64*1024;