Maximum Number of threads suuported????


 
Thread Tools Search this Thread
Operating Systems Solaris Maximum Number of threads suuported????
# 1  
Old 06-14-2006
Error Maximum Number of threads suuported????

Hi,
Anybody knows the maximum number of threads suuported by a process in solaris os. Please reply
Thanks in advance Smilie
# 2  
Old 06-14-2006
i would say that these are the kernel values you are looking for:

Code:
root@jumpy # adb -P ">> " -k /dev/ksyms /dev/mem
physmem 1f014
>> pidmax /D
pidmax:
pidmax:         30000
>> max_nprocs /D
max_nprocs:
max_nprocs:     15882
>> maxuprc /D
maxuprc:
maxuprc:        15877
>>
root@jumpy # uname -a
SunOS jumpy 5.9 Generic_118558-11 sun4u sparc SUNW,UltraAX-i2
root@jumpy #

pidmax --> Specifies the value of the largest possible process ID.
default = 30.000; could be set from 266 to 999.999 (pidmax sets the value for the maxpid variable. Once maxpid is set, pidmax is ignored.)

max_nprocs --> Specifies the maximum number of processes that can be created on a system.
default = 10 + (16 x maxusers); 266 to value of maxpid. [where maxusers defines the number of logged in users the system could support.]

maxuprc --> Specifies the maximum number of processes that can be created on a system by any one user.
default = max_nprocs - reserved_procs; could be 1 to max_nprocs - reserved_procs [where reserved_procs specifies the number of system process slots to be reserved in the process table for processes with a UID of root (0).]

regards PRESSY
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Maximum number of sed squeezing

Hi all, What is the maximum number of sed squeezing in one shell?? I've surprised with this message when I squeezed 50 sed in the same shell: 253: Identifier too long - maximum length is 18.This is what I've did in my sed query | sed -e "s/ 0 /Default /" | sed -e "s/ 1 ... (2 Replies)
Discussion started by: leo_ultra_leo
2 Replies

2. Shell Programming and Scripting

Maximum number of characters in a line.

Hi, Could any one please let me know what is the maximum number of characters that will fit into a single line of a flat file on a unix. Thanks. (1 Reply)
Discussion started by: Shivdatta
1 Replies

3. UNIX for Dummies Questions & Answers

ls - maximum number of files

what is the maximum number ls can list down (6 Replies)
Discussion started by: karnan
6 Replies

4. UNIX for Dummies Questions & Answers

maximum number of arguments

Hi, What is the maximum number of arguments that could be passed to zsh ? To find out that I tried a simple script. And the maximum number of arguments that could be passed turned out to be 23394 #! /bin/zsh arg=1 i=1 subIndex=23000 while do arg=$arg" "$i i=$(($i + 1))... (9 Replies)
Discussion started by: matrixmadhan
9 Replies

5. Linux

Maximum number of threads handled by a process????

Hi Anybody knows max. no. of threads handled by a process in linux. Please reply Thanks in advnce :confused: (0 Replies)
Discussion started by: Agnello
0 Replies

6. Programming

maximum number of dots in a domain name

maximum number of dots in a domain name - not a sub-domain name. for example: mydomain.com ------ one dot mydomain.com.au ------ two dots do you know maximum number of dots in a domain name and could you provide a sample? thx. (1 Reply)
Discussion started by: hello20009876
1 Replies

7. UNIX for Dummies Questions & Answers

maximum number of input on solaris

Hi, Can anyone tell me what the maximum amount of input characters is on solaris command line? (standard ksh I think) (1 Reply)
Discussion started by: marcello
1 Replies

8. UNIX for Advanced & Expert Users

Maximum number of threads per user

Anybody knows how to setup Maximum number of threads per user or some other value on Sun Solaris 8. (1 Reply)
Discussion started by: s_aamir
1 Replies
Login or Register to Ask a Question