thr_getconcurrency(3C) Standard C Library Functions thr_getconcurrency(3C)NAME
thr_getconcurrency, thr_setconcurrency - get or set thread concurrency level
SYNOPSIS
cc -mt [ flag... ] file...[ library... ]
#include <thread.h>
int thr_setconcurrency(int new_level);
int thr_getconcurrency(void);
DESCRIPTION
These functions are obsolete and maintained for compatibility only. The thr_setconcurrency() function updates the desired concurrency
level that libthread maintains for the calling process. This value does not affect the behavior of the calling process.
The thr_getconcurrency() function returns the current value for the desired concurrency level.
RETURN VALUES
The thr_getconcurrency() function always returns the current value for the desired concurrency level.
If successful, the thr_setconcurrency() function returns 0. Otherwise, a non-zero value is returned to indicate the error.
ERRORS
The thr_setconcurrency() function will fail if:
EAGAIN The specified concurrency level would cause a system resource to be exceeded.
EINVAL The value for new_level is negative.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO thr_create(3C), attributes(5), standards(5)SunOS 5.11 11 May 1998 thr_getconcurrency(3C)
Check Out this Related Man Page
thr_getconcurrency(3C) Standard C Library Functions thr_getconcurrency(3C)NAME
thr_getconcurrency, thr_setconcurrency - get or set thread concurrency level
SYNOPSIS
cc -mt [ flag... ] file...[ library... ]
#include <thread.h>
int thr_setconcurrency(int new_level);
int thr_getconcurrency(void);
DESCRIPTION
These functions are obsolete and maintained for compatibility only. The thr_setconcurrency() function updates the desired concurrency
level that libthread maintains for the calling process. This value does not affect the behavior of the calling process.
The thr_getconcurrency() function returns the current value for the desired concurrency level.
RETURN VALUES
The thr_getconcurrency() function always returns the current value for the desired concurrency level.
If successful, the thr_setconcurrency() function returns 0. Otherwise, a non-zero value is returned to indicate the error.
ERRORS
The thr_setconcurrency() function will fail if:
EAGAIN The specified concurrency level would cause a system resource to be exceeded.
EINVAL The value for new_level is negative.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO thr_create(3C), attributes(5), standards(5)SunOS 5.11 11 May 1998 thr_getconcurrency(3C)
Hi Bros,
I am in a serious trouble with concurrency issue while using mailx. I have a shell script which reads all the emails of a unix user account and create a copy (another mbox for processing and archive purpose). This script works fine for 99.99% of the time but sometime it start creating... (2 Replies)