source: rtems/cpukit/posix/src/condattrdestroy.c @ 98dca75

4.104.114.84.95
Last change on this file since 98dca75 was 98dca75, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 18:25:26

Split condition variables into multiple files.

  • Property mode set to 100644
File size: 562 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <pthread.h>
6#include <errno.h>
7
8#include <rtems/system.h>
9#include <rtems/score/object.h>
10#include <rtems/score/states.h>
11#include <rtems/score/watchdog.h>
12#include <rtems/posix/cond.h>
13#include <rtems/posix/time.h>
14#include <rtems/posix/mutex.h>
15
16/*PAGE
17 *
18 *  11.4.1 Condition Variable Initialization Attributes,
19 *            P1003.1c/Draft 10, p. 96
20 */
21 
22int pthread_condattr_destroy(
23  pthread_condattr_t *attr
24)
25{
26  if ( !attr || attr->is_initialized == FALSE )
27    return EINVAL;
28
29  attr->is_initialized = FALSE;
30  return 0;
31}
Note: See TracBrowser for help on using the repository browser.