OSDN Git Service

(split) LDP: Translation snapshots of pthread_*
[linuxjm/LDP_man-pages.git] / release / man3 / clock_getcpuclockid.3
1 .\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2 .\" <mtk.manpages@gmail.com>
3 .\"
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\"
24 .\"*******************************************************************
25 .\"
26 .\" This file was generated with po4a. Translate the source file.
27 .\"
28 .\"*******************************************************************
29 .TH CLOCK_GETCPUCLOCKID 3 2010\-09\-10 Linux "Linux Programmer's Manual"
30 .SH 名前
31 clock_getcpuclockid \- obtain ID of a process CPU\-time clock
32 .SH 書式
33 \fB#include <time.h>\fP
34 .nf
35 .sp
36 \fBint clock_getcpuclockid(pid_t \fP\fIpid\fP\fB, clockid_t *\fP\fIclock_id\fP\fB);\fP
37 .fi
38 .sp
39 \fI\-lrt\fP でリンクする。
40 .sp
41 .ad l
42 .in -4n
43 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
44 .in
45 .sp
46 \fBclock_getcpuclockid\fP():
47 .RS 4
48 _XOPEN_SOURCE\ >=\ 600 || _POSIX_C_SOURCE\ >=\ 200112L
49 .RE
50 .ad
51 .SH 説明
52 The \fBclock_getcpuclockid\fP()  function obtains the ID of the CPU\-time clock
53 of the process whose ID is \fIpid\fP, and returns it in the location pointed to
54 by \fIclock_id\fP.  If \fIpid\fP is zero, then the clock ID of the CPU\-time clock
55 of the calling process is returned.
56 .SH 返り値
57 On success, \fBclock_getcpuclockid\fP()  returns 0; on error, it returns one of
58 the positive error numbers listed in ERRORS.
59 .SH エラー
60 .TP 
61 \fBENOSYS\fP
62 The kernel does not support obtaining the per\-process CPU\-time clock of
63 another process, and \fIpid\fP does not specify the calling process.
64 .TP 
65 \fBEPERM\fP
66 The caller does not have permission to access the CPU\-time clock of the
67 process specified by \fIpid\fP.  (Specified as an optional error in
68 POSIX.1\-2001; does not occur on Linux unless the kernel does not support
69 obtaining the per\-process CPU\-time clock of another process.)
70 .TP 
71 \fBESRCH\fP
72 There is no process with the ID \fIpid\fP.
73 .SH バージョン
74 The \fBclock_getcpuclockid\fP()  function is available in glibc since version
75 2.2.
76 .SH 準拠
77 POSIX.1\-2001.
78 .SH 注意
79 Calling \fBclock_gettime\fP(2)  with the clock ID obtained by a call to
80 \fBclock_getcpuclockid\fP()  with a \fIpid\fP of 0, is the same as using the clock
81 ID \fBCLOCK_PROCESS_CPUTIME_ID\fP.
82 .SH 例
83 The example program below obtains the CPU\-time clock ID of the process whose
84 ID is given on the command line, and then uses \fBclock_gettime\fP(2)  to
85 obtain the time on that clock.  An example run is the following:
86 .in +4n
87 .nf
88
89 $\fB ./a.out 1\fP                 # Show CPU clock of init process
90 CPU\-time clock for PID 1 is 2.213466748 seconds
91 .fi
92 .in
93 .SS プログラムのソース
94 \&
95 .nf
96 #define _XOPEN_SOURCE 600
97 #include <stdio.h>
98 #include <unistd.h>
99 #include <stdlib.h>
100 #include <time.h>
101
102 int
103 main(int argc, char *argv[])
104 {
105     clockid_t clockid;
106     struct timespec ts;
107
108     if (argc != 2) {
109         fprintf(stderr, "%s <process\-ID>\en", argv[0]);
110         exit(EXIT_FAILURE);
111     }
112
113     if (clock_getcpuclockid(atoi(argv[1]), &clockid) != 0) {
114         perror("clock_getcpuclockid");
115         exit(EXIT_FAILURE);
116     }
117
118     if (clock_gettime(clockid, &ts) == \-1) {
119         perror("clock_gettime");
120         exit(EXIT_FAILURE);
121     }
122
123     printf("CPU\-time clock for PID %s is %ld.%09ld seconds\en",
124             argv[1], (long) ts.tv_sec, (long) ts.tv_nsec);
125     exit(EXIT_SUCCESS);
126 }
127 .fi
128 .SH 関連項目
129 \fBclock_getres\fP(2), \fBtimer_create\fP(2), \fBpthread_getcpuclockid\fP(3),
130 \fBtime\fP(7)