1.4.1_01, gcc 3.2, jai and 3d
Hi, the question should be evident from the subject: if I download the 1.4.1_01 compiled with gcc 3.2, where can I find the jai and j3d packages binary compatible with it? (I guess the one are on the ftp servers are compatible with the version compiled with gcc 2.95, isn't it?) Best regards Andrea Aime -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: per jvm thread limit
On Fri, 14 Feb 2003, Dan Kegel wrote: > > > > I was under the impression that since linux made ever thread a seperate > > process they each had their own stack and only shared the heap memory. > > Threads share the entire memory space. That's what makes them threads > instead of processes. But they have no logical reason to share stack memory. I was assuming the os did things logically. My mistake. > > So I just have to set that line in /boot/config-2.4.18-14 and reboot? > > No; you have to install your kernel source, > read the file /usr/src/linux-2.4/README, > copy that config file to /usr/src/linux-2.4/.config, > edit it not manually but using 'make menuconfig', > then build and install the kernel. It will take some learning! Is the option under make xconfig? That's what I usually use. > > > Is that limit per process or system wide? > > It's set at kernel compile time, and controls all processes. > What I mean is the 1 gig limit for 1 gig per process or for 1 gig for all processes? I would think it applieas per process, but I don't want to make any more assumptions. > > Can you point me at documentation > > for the config options? > > http://www.kernelnewbies.org Thanks. > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: per jvm thread limit
[EMAIL PROTECTED] wrote: On Fri, 14 Feb 2003, Dan Kegel wrote: So I just have to set that line in /boot/config-2.4.18-14 and reboot? No; you have to install your kernel source, read the file /usr/src/linux-2.4/README, copy that config file to /usr/src/linux-2.4/.config, edit it not manually but using 'make menuconfig', then build and install the kernel. It will take some learning! Is the option under make xconfig? That's what I usually use. Yes - menuconfig and xconfig are two different UIs for the same thing. Copy the config file to .config, make xconfig, make your changes, and rebuild. I also recommend doing a "make mrproper", which does a thorough cleaning to the Linux build tree, *before* you copy the .config file. Nathan Meyers [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: per jvm thread limit
On Sun, 16 Feb 2003, Dan Kegel wrote: > [EMAIL PROTECTED] wrote: > > But they have no logical reason to share stack memory. I was assuming > > the os did things logically. My mistake. > > Just curious: do you know of any operating systems that don't > share the stack memory for different threads? No. Just about all I know about operating systems is the theory I took in comp sci 202. > > > > What I mean is the 1 gig limit for 1 gig per process or for 1 gig for all > > processes? I would think it applieas per process, but I don't want to > > make any more assumptions. > > It sets the amount of address space available to any process. > If you have more than one process, each has its own private 1 (or 2, or 3) gigabyte > address space. OK just making sure. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]