- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- is this an HP parameter?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:48 AM
04-08-2002 06:48 AM
is this an HP parameter?
PTHREAD_THREADS_MAX
I know it isn't a kernel parameter and they have already inquired about nkthreads and max_thread_proc.
thanks,
Rusty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:52 AM
04-08-2002 06:52 AM
Re: is this an HP parameter?
This earlier thread might help:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf05b0b0717d1d5118ff40090279cd0f9,00.html
This is basically a thread limit variable.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:54 AM
04-08-2002 06:54 AM
Re: is this an HP parameter?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:03 AM
04-08-2002 07:03 AM
Re: is this an HP parameter?
Check this out and see the description about the parameter:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=94bc17db0158731a44/screen=ckiDisplayDocument?docId=200000059774355
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:09 AM
04-08-2002 07:09 AM
Re: is this an HP parameter?
The defenition:
PTHREAD_THREADS_MAX - Maximum number of pthreads that can be created per process.
Check this document for related information, about all type of system configurable parameters:
http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90682/B2355-90682_top.html&con=/hpux/onlinedocs/B2355-90682/00/02/212-con.html&toc=/hpux/onlinedocs/B2355-90682/00/02/212-toc.html&searchterms=PTHREAD_THREADS_MAX&queryid=20020408-081439
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:09 AM
04-08-2002 07:09 AM
Re: is this an HP parameter?
the only thing close was _POSIX_THREAD_KEYS_MAX
are they related? or the same?
also I rean getconf THREAD_THREAD_MAX which came back as 64. what is THREAD_THREAD_MAX ?
thanks,
Rusty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:30 AM
04-08-2002 07:30 AM
Re: is this an HP parameter?
The minimum & DEFAULT is 64 - so you need to ask them what value (up to 3000) do they think they'll need & set that (maybe plus 5-10% for wiggle room) & see if that solves the problem.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:34 AM
04-08-2002 07:34 AM
Re: is this an HP parameter?
Do a 'man sysconf' and it will give you the defenitions. THREAD_THREADS_MAX and PTHREAD_THREADS_MAX are the same. The other parameter might be related to POSIX shell and the defenition says - The number of pthread data keys per process.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:36 AM
04-08-2002 07:36 AM
Re: is this an HP parameter?
TIA
Rusty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:44 AM
04-08-2002 07:44 AM
Re: is this an HP parameter?
Yes this is a HP kernel Parameter the value of PTHREAD_THREADS_MAX in limits.h defines the
maximum number of threads per process and must have
as a minimum value _POSIX_THREAD_THREADS_MAX. The definition
of PTHREAD_THREADS_MAX may be omitted from limits.h
on implementations where the corresponding value is
equal to or greater than the stated minimum, but is
indeterminate.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 07:45 AM
04-08-2002 07:45 AM
Re: is this an HP parameter?
Jeff