LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 12-18-2005, 09:53 AM   #1
Pandamatak
LQ Newbie
 
Registered: Sep 2005
Location: Menlo Park, CA
Posts: 8

Rep: Reputation: 0
How can I retrieve the number of running posix threads?


Hello

I'd like to limit the number of threads that my server can simultaneously run to some predetermined number, say 50, and refuse connections when the count exceeds this. The idea is that load-balancing will be a responsibility of client apps as they iterate over a server bank for the first server that accepts a connection.

I can't seem to find a straightforward way to do this simply (I mean retrieve this count in a single, simple system/function call to the pthread library). I can, of course, do this by maintaining a thread counter myself and updating it with a mutex lock, but I'd rather not do this if an existing function can do this for me. It seems so obvious that I just can't believe I haven't been able to find such a call. Or have I been looking in the wrong places?

Ideally, I'd like something like:

size_t nActiveThreads = pthread_getActiveCount(getpid());

Any help will be greatly appreciated.

Thanks.

pandamatak
 
Old 12-19-2005, 10:36 AM   #2
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
It doesn't seems a standard posix call exists for that task.

Maintaining your own counter seems to me the best approach, but should you want to avoid it, I believe you can count the number of threads a process is using by parsing the /proc directory.
This is quite easy with Solaris "/proc/self/lwp/*", not sure about how to translate that on other O/Ses though.

Last edited by jlliagre; 12-19-2005 at 10:38 AM.
 
Old 12-24-2005, 11:45 AM   #3
Pandamatak
LQ Newbie
 
Registered: Sep 2005
Location: Menlo Park, CA
Posts: 8

Original Poster
Rep: Reputation: 0
Answer to the problem...

Thank all for your help. From the responses I got, it seems the following is the best workaround, which I was hoping I'd not have to do. But so far it seems to work
fine in the server.

Regards -- &

//--------------------------------------------------------
#include <pthread.h>

/* The only thread-writable global.
*/
size_t NumActiveThreads = 1;
pthread_mutex_t NatMutex = PTHREAD_MUTEX_INITIALIZER;

/* Returns the number of active threads so we can
* control how many we choose to handle
*/
size_t numActiveThreads()
{
pthread_mutex_lock(&NatMutex);
size_t n = NumActiveThreads;
pthread_mutex_unlock(&NatMutex);
return n;
}

void incrNumActiveThreads() // Safe increment
{
pthread_mutex_lock(&NatMutex);
++NumActiveThreads;
pthread_mutex_unlock(&NatMutex);
}

void decrNumActiveThreads() // Safe decrement
{
pthread_mutex_lock(&NatMutex);
--NumActiveThreads;
pthread_mutex_unlock(&NatMutex);
}

//--------------------------------------------------------

Last edited by Pandamatak; 12-24-2005 at 11:46 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
POSIX threads - pthread_cond_timedwait iklinux Programming 5 09-26-2005 10:33 AM
About POSIX threads Ephracis Programming 1 12-03-2004 06:33 AM
Signal Handling in Threads[POSIX] anoop_cv Programming 1 11-02-2004 02:00 AM
enable pthreads? (posix threads) cpluspaul Slackware 5 06-29-2004 05:56 AM
I have a problem with POSIX Threads. AndreasA Programming 2 08-11-2003 02:48 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 04:45 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration