8498 ficl: variable 'count' might be clobbered by 'longjmp' or 'vfork'
[unleashed.git] / share / man / man3c / pthread_attr_getschedpolicy.3c
blob4cc9a90c4afdbe3d08f7438e473e6bb66f711e2d
1 '\" te
2 .\" Copyright (c) 2008, Sun Microsystems, Inc.  All Rights Reserved.
3 .\" Copyright (c) 2001, the Institute of Electrical and Electronics Engineers, Inc. and The Open Group. All Rights Reserved.
4 .\" Copyright 1991, 1992, 1994, The X/Open Company Ltd.  All Rights Reserved.
5 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
6 .\" http://www.opengroup.org/bookstore/.
7 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
8 .\"  This notice shall appear on any product containing this material.
9 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
10 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
11 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
12 .TH PTHREAD_ATTR_GETSCHEDPOLICY 3C "Apr 1, 2008"
13 .SH NAME
14 pthread_attr_getschedpolicy, pthread_attr_setschedpolicy \- get or set
15 schedpolicy attribute
16 .SH SYNOPSIS
17 .LP
18 .nf
19 cc -mt [ \fIflag\fR... ] \fIfile\fR... -lpthread [ \fIlibrary\fR... ]
20 #include <pthread.h>
22 \fBint\fR \fBpthread_attr_getschedpolicy\fR(\fBconst pthread_attr_t *restrict\fR \fIattr\fR,
23      \fBint *restrict\fR \fIpolicy\fR);
24 .fi
26 .LP
27 .nf
28 \fBint\fR \fBpthread_attr_setschedpolicy\fR(\fBpthread_attr_t *\fR\fIattr\fR, \fBint\fR \fIpolicy\fR);
29 .fi
31 .SH DESCRIPTION
32 .sp
33 .LP
34 The functions \fBpthread_attr_setschedpolicy()\fR and
35 \fBpthread_attr_getschedpolicy()\fR, respectively, set and get the
36 \fIschedpolicy\fR attribute in the \fIattr\fR argument.
37 .sp
38 .LP
39 Supported values of \fIpolicy\fR include  \fBSCHED_FIFO,\fR \fBSCHED_RR\fR and
40 \fBSCHED_OTHER,\fR which are defined by the header \fB<sched.h>\fR. When
41 threads executing with the scheduling policy \fBSCHED_FIFO\fR or
42 \fBSCHED_RR\fR are waiting on a mutex, they acquire the mutex in priority order
43 when the mutex is unlocked.
44 .sp
45 .LP
46 See \fBsched.h\fR(3HEAD) for a description of all defined policy values.  Valid
47 policy values can also be obtained from \fBpthread_getschedparam\fR(3C) and
48 \fBsched_getscheduler\fR(3C).
49 .SH RETURN VALUES
50 .sp
51 .LP
52 If successful, the \fBpthread_attr_setschedpolicy()\fR and
53 \fBpthread_attr_getschedpolicy()\fR functions return  \fB0\fR. Otherwise, an
54 error number is returned to indicate the error.
55 .SH ERRORS
56 .sp
57 .LP
58 The \fBpthread_attr_setschedpolicy()\fR or \fBpthread_attr_getschedpolicy()\fR
59 function may fail if:
60 .sp
61 .ne 2
62 .na
63 \fB\fBEINVAL\fR\fR
64 .ad
65 .RS 10n
66 \fIattr\fR or \fIpolicy\fR is invalid.
67 .RE
69 .SH USAGE
70 .sp
71 .LP
72 After these attributes have been set, a thread can be created with the
73 specified attributes using \fBpthread_create()\fR. Using these routines does
74 not affect the current running thread.
75 .SH ATTRIBUTES
76 .sp
77 .LP
78 See \fBattributes\fR(5) for descriptions of the following attributes:
79 .sp
81 .sp
82 .TS
83 box;
84 c | c
85 l | l .
86 ATTRIBUTE TYPE  ATTRIBUTE VALUE
88 Interface Stability     Committed
90 MT-Level        MT-Safe
92 Standard        See \fBstandards\fR(5).
93 .TE
95 .SH SEE ALSO
96 .sp
97 .LP
98 \fBpthread_attr_init\fR(3C), \fBpthread_attr_setscope\fR(3C),
99 \fBpthread_attr_setinheritsched\fR(3C), \fBpthread_attr_setschedparam\fR(3C),
100 \fBpthread_create\fR(3C), \fBpthread_getschedparam\fR(3C),
101 \fBsched.h\fR(3HEAD), \fBsched_getscheduler\fR(3C), \fBattributes\fR(5),
102 \fBstandards\fR(5)