Search the web
Sign In
New User? Sign Up
linux-bangalore-programming · LB Programming Discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7194 - 7223 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7194
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
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...
Send Email
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...
Rajesh Bhattacharya
bhatta_net
Offline Send Email
Jul 5, 2006
10:37 am
7197
Hi All, I am trying to build and install gcc-3.4.3 and following is the error I get. I have no clue from where to start the troubleshooting. ...
A
atul_tyagi261
Offline Send Email
Jul 9, 2006
2:31 am
7198
... 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...
Biju Chacko
Biju_Chacko
Offline Send Email
Jul 10, 2006
4:39 am
7199
... 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 ...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jul 10, 2006
7:53 am
7200
... 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...
A
atul_tyagi261
Offline Send Email
Jul 12, 2006
6:14 am
7201
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...
Ody yudah quraviharto
quraviharto1
Offline Send Email
Jul 14, 2006
6:53 am
7202
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...
prakash
prakash_tech03
Offline Send Email
Jul 14, 2006
9:23 am
7203
* 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...
Srinath Venkataramani
srinath1076
Offline Send Email
Jul 14, 2006
10:00 am
7204
... 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...
Sharninder Khera
sharninder
Offline Send Email
Jul 16, 2006
7:05 am
7205
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....
Dasharath Tarase
dtarase
Offline Send Email
Jul 16, 2006
7:05 am
7206
... http://www.tldp.org/LDP/intro-linux/html/sect_04_01.html -- look for SUID. -- Arun Raghavan (http://nemesis.accosted.net) ...
Arun Raghavan
arunissatan
Online Now Send Email
Jul 16, 2006
12:54 pm
7207
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...
Send Email
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...
prakash
prakash_tech03
Offline Send Email
Jul 18, 2006
2:10 am
7209
... 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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jul 18, 2006
4:17 am
7210
... 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...
Sarfraaz Ahmed
s_raaz
Offline Send Email
Jul 18, 2006
7:26 am
7211
... 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...
Srinath Venkataramani
srinath1076
Offline Send Email
Jul 18, 2006
7:45 am
7212
... 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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jul 18, 2006
11:48 am
7213
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]; ...
Raseel Bhagat
raseelbhagat
Offline Send Email
Jul 18, 2006
12:34 pm
7214
... 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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jul 18, 2006
2:32 pm
7215
... 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@...
Send Email
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...
Sarfraaz Ahmed
s_raaz
Offline Send Email
Jul 18, 2006
3:16 pm
7217
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...
Raseel Bhagat
raseelbhagat
Offline Send Email
Jul 19, 2006
6:22 am
7218
... 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....
Ganesan Rajagopal
nasenagr
Offline Send Email
Jul 19, 2006
9:04 am
7219
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 ...
Raseel Bhagat
raseelbhagat
Offline Send Email
Jul 20, 2006
5:52 am
7220
... 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@...
Send Email
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...
Aseem Rawat
rawat_linux
Offline Send Email
Jul 24, 2006
4:16 pm
7222
... Doesn't rc.local serve your purpose? Regards, NMK....
Nadeem M. Khan
nadeem.m.khan@...
Send Email
Jul 25, 2006
10:19 am
7223
... Ok. Dumb Question, but is your system actually booting up in runlevel 5 ? -- Sharninder...
Sharninder Khera
sharninder
Offline Send Email
Jul 25, 2006
10:20 am
Messages 7194 - 7223 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help