ibm-information-center/dist/eclipse/plugins/i5OS.ic.apis_5.4.0.1/users_79.htm

230 lines
7.0 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Copyright" content="Copyright (c) 2006 by IBM Corporation">
<title>pthread_get_expiration_np()--Get Condition Expiration Time from Relative Time</title>
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<!-- Begin Header Records ========================================== -->
<!-- NETMG2 SCRIPT A converted by B2H R4.1 (346) (CMS) by HOLTJM at -->
<!-- RCHVMW2 on 29 Jan 1999 at 10:01:37 -->
<!--File Edited November 2001 -->
<!--End Header Records -->
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
</head>
<body>
<!-- Java sync-link -->
<script language="Javascript" src="../rzahg/synch.js" type="text/javascript">
</script>
<a name="Top_Of_Page"></a>
<h2>pthread_get_expiration_np()--Get Condition Expiration Time from Relative Time</h2>
<div class="box" style="width: 70%;">
<br>
&nbsp;&nbsp;Syntax:
<pre> #include &lt;pthread.h&gt;
#include &lt;time.h&gt;
int pthread_get_expiration_np(const struct timespec *delta,
struct timespec *abstime); </pre>
&nbsp;&nbsp;Service Program Name: QP0WPTHR<br>
<!-- iddvc RMBR -->
<br>
&nbsp;&nbsp;Default Public Authority: *USE <br>
<!-- iddvc RMBR -->
<br>
&nbsp;&nbsp;Threadsafe: Yes<br>
<!-- iddvc RMBR -->
<br>
&nbsp;&nbsp;Signal Safe: Yes<br>
<!-- iddvc RMBR -->
<br>
</div>
<p>The <strong>pthread_get_expiration_np</strong>() function computes an absolute time by adding the specified relative time (<em>delta</em>) to the current system time. The resulting absolute time output in the <em>abstime</em> parameter can be used as the expiration time in a call to <strong>pthread_cond_timedwait</strong>().</p>
<p>The current system time is retrieved from the system clock.</p>
<p><strong>Note:</strong> This function is not portable.</p>
<br>
<h3>Authorities and Locks</h3>
<p>None.</p>
<br>
<h3>Parameters</h3>
<dl>
<dt><strong>delta</strong></dt>
<dd>(Input) Elapsed time to add to the current system time</dd>
<dt><strong>abstime</strong></dt>
<dd>(Output) Address of the returned value representing the expiration time</dd>
</dl>
<br>
<h3>Return Value</h3>
<dl>
<dt><strong>0</strong></dt>
<dd><strong>pthread_get_expiration_np</strong>() was successful.</dd>
<dt><strong>value</strong></dt>
<dd><strong>pthread_get_expiration_np</strong>() was not successful. <em>value</em> is set to indicate the error condition.</dd>
</dl>
<br>
<h3>Error Conditions</h3>
<p>If <strong>pthread_get_expiration_np</strong>() was not successful, the error condition returned usually indicates one of the following errors. Under some conditions, the value returned could indicate an error other than those listed here.</p>
<dl>
<dt><em>[EINVAL]</em></dt>
<dd><p>The value specified for the argument is not correct.</p></dd>
</dl>
<br>
<h3>Related Information</h3>
<ul>
<li>The &lt;<strong>pthread.h</strong>> header file. See <a href="rzah4hed.htm">Header files for Pthread functions</a>.<br><br></li>
<li><a href="users_77.htm">pthread_cond_timedwait()</a>--Timed Wait for Condition</li>
</ul>
<br>
<h3>Example</h3>
<p>See <a href="../apiref/aboutapis.htm#codedisclaimer">Code disclaimer information</a>
for information pertaining to code examples.</p>
<pre>#define _MULTI_THREADED
#include &lt;stdio.h&gt;
#include &lt;qp0z1170.h&gt;
#include &lt;time.h&gt;
#include &lt;pthread.h&gt;
#include &quot;check.h&quot;
/* For safe condition variable usage, must use a boolean predicate and&nbsp; */
/* a mutex with the condition. */
int workToDo = 0;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
int failStatus=99;
#define NTHREADS 2
#define WAIT_TIME_SECONDS 3
void *threadfunc(void *parm)
{
int rc;
struct timespec delta;
struct timespec abstime;
int retries = 2;
pthread_id_np_t tid;
tid = pthread_getthreadid_np();
rc = pthread_mutex_lock(&amp;mutex);
checkResults(&quot;pthread_mutex_lock()\n&quot;, rc);
while (retries--) {
delta.tv_sec&nbsp; = WAIT_TIME_SECONDS;
delta.tv_nsec = 0;
rc = pthread_get_expiration_np(&amp;delta, &amp;abstime);
checkResults(&quot;pthread_get_expiration_np()\n&quot;, rc);
while (!workToDo) {
printf(&quot;Thread 0x%.8x %.8x blocked\n&quot;, tid);
rc = pthread_cond_timedwait(&amp;cond, &amp;mutex, &amp;abstime);
if (rc != ETIMEDOUT) {
printf(&quot;pthread_cond_timedwait() - expect timeout %d\n&quot;, rc);
rc = pthread_mutex_unlock(&amp;mutex);
checkResults(&quot;pthread_mutex_lock()\n&quot;, rc);
return __VOID(failStatus);
}
/* Since there is no code in this example to wake up any */
/* thread on the condition variable, we know we are done */
/* because we have timed out. */
break;
}
printf(&quot;Wait timed out! tid=0x%.8x %.8x\n&quot;, tid);
}
rc = pthread_mutex_unlock(&amp;mutex);
checkResults(&quot;pthread_mutex_lock()\n&quot;, rc);
return __VOID(0);
}
int main(int argc, char **argv)
{
int rc=0;
int i;
pthread_t threadid[NTHREADS];
void *status;
int results=0;
printf(&quot;Enter Testcase - %s\n&quot;, argv[0]);
printf(&quot;Create %d threads\n&quot;, NTHREADS);
for(i=0; i&lt;NTHREADS; ++i) {
rc = pthread_create(&amp;threadid[i], NULL, threadfunc, NULL);
checkResults(&quot;pthread_create()\n&quot;, rc);
}
printf(&quot;Wait for threads and cleanup\n&quot;);
for (i=0; i&lt;NTHREADS; ++i) {
rc = pthread_join(threadid[i], &amp;status);
checkResults(&quot;pthread_join()\n&quot;, rc);
if (__INT(status) == failStatus) {
printf(&quot;A thread failed!\n&quot;);
results++;
}
}
pthread_cond_destroy(&amp;cond);
pthread_mutex_destroy(&amp;mutex);
printf(&quot;Main completed\n&quot;);
return results;
}</pre>
<p><strong>Output:</strong></p>
<pre>Enter Testcase - QP0WTEST/TPGETEX0
Create 2 threads
Wait for threads and cleanup
Thread 0x00000000 000002ab blocked
Thread 0x00000000 000002ac blocked
Wait timed out! tid=0x00000000 000002ab
Thread 0x00000000 000002ab blocked
Wait timed out! tid=0x00000000 000002ac
Thread 0x00000000 000002ac blocked
Wait timed out! tid=0x00000000 000002ab
Wait timed out! tid=0x00000000 000002ac
Main completed</pre>
<hr>
API introduced: V4R3
<hr>
<center>
<table cellpadding="2" cellspacing="2">
<tr align="center">
<td valign="middle" align="center"><a href="#Top_Of_Page">Top</a> |
<a href="rzah4mst.htm">Pthread APIs</a> |
<a href="aplist.htm">APIs by category</a></td>
</tr>
</table>
</center>
</body>
</html>