===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 1, 2006 5:04 pm
7195
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 2, 2006 3:38 pm
7196
I am using SuSE Linux 9.3 (i586) (kernel: 2.6.11.4-20a-smp) to build a couple of proprietary loadable modules. In the linking stage I get warnings of...
... Install compat-* rpms from the distro CDs and then export CC='gcc32'. gcc is not guaranteed to build with newer versions and FC5 ships a 4.1.x compiler...
... What's the machine you're building on? Looks like an incompatible arch. Are you able to compile a simple test program? Hint: gcc requires a working ...
... I was able to compile test programs. lfs documentation clearly stated it won't work with FC4 but had information on FC5. I shall try what Biju has...
hi all, Am now helping developing cashier system using GNU/linux on pentium 233 MMX. I'm a java programmer, but java runs slowly on 233MMX. I can't either use...
Hi all, By using following code i am able to create only 254 threads. Is it possible to get more than 2100 threads in a single process,by configuring the...
* Is it possible to get more than 2100 threads in a single process,by configuring the values.(in linux kernel 2.4 redhat 9) or some thing else ? I don't...
... Do you really want to use this system as the frontend system ? Maybe developing the actual application in php and using some lightweight window manager...
I want to develop a program in C , which is run as normal user. I want to switch to root(superuser) privileges and i want to run some commands like lsmod etc....
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 16, 2006 3:49 pm
7208
Dear @, Can we create or span threads more than 2000 by a single process? I am using this code #include<stdio.h> #include<pthread.h> #include<errno.h> void...
... Yes, you can. ... Not the per process stack. You need to set the per thread stack. Do you see a second argument in pthread_create? You need to pass an...
... Hi Ganesan, This was a good explanation. ... per thread ... But i didnt understand the assumption of 4GB being available for stack. I was under the...
... Your assumption is correct (On a 32 bit platform btw :-) ) You probably missed the point by Ganeshan: The default thread stack size in Linux is 8MB. He is...
... Small correction. You only get 3GB for the user space, top 1G is reserved for the kernel. I gave the best case estimate, assuming you can use up the whole...
Hi, when I declare a huge size of an array ,as in the gollowing program, I get a Segmentation Fault. #include<stdio.h> int main(void) { int i[12345678]; ...
... How would the compiler know what's the stack size on the platform the binary will run? Arguably your number is "obviously exaggerated", but what would be a...
... No, it shouldn't. The compiler does not know nor make assumptions about the amount of memory available. -- Can't see Hindi? http://devanaagarii.net...
€ ¢à¤’¦à¤²à¥’«à¤’µ € ...
alok@...
Jul 18, 2006 3:09 pm
7216
... reserved ... up the ... within ... haha .. nice one :D Srinath and Ganesan, thanks for the explanation. All clear :-) -- Sarfraaz...
Hi Ganesh, ... Actually, Ganesh that IS my question. I was wondering if it has anything to do with the 3GB limit for user processes, (from the discussion in...
... No, 12345678 ints is about 47MB. So you're no where close to 3GB address space limit. Instead you're hitting the stack limit for the process which is 8MB....
Hi, ... Ohh !! Makes sense. But then, if I declare my array as global , then I wouldn;t have to worry about overflowing the stack limit right ? Raseel ...
... Then it would be in the BSS/initialized data segment and stack size limit would not apply. But RLIMIT_DATA would. RLIMIT_DATA is the sum of a program's...
Om.
om.turyx@...
Jul 21, 2006 12:15 pm
7221
Hi , I want to run a script in run level 5 while booting a Red-Linux machine .In order to achieve the same I did the following but in vain : 1) created a...