source: rtems/cpukit/posix/src/condattrgetpshared.c @ 04da96c7

5
Last change on this file since 04da96c7 was 04da96c7, checked in by Joel Sherrill <joel@…>, on 03/09/16 at 21:14:43

posix/src/condattr*etpshared.c: Clean up and improve comments

  • Property mode set to 100644
File size: 662 bytes
RevLine 
[e43f4758]1/**
[04da96c7]2 * @file
[e43f4758]3 *
[04da96c7]4 * @brief Get the Process-Shared Condition Variable Attributes
5 * @ingroup POSIXAPI
[e43f4758]6 */
7
[98dca75]8/*
[feaa007]9 *  COPYRIGHT (c) 1989-2007.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
[c499856]14 *  http://www.rtems.org/license/LICENSE.
[98dca75]15 */
16
[f42b726]17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
[98dca75]21#include <pthread.h>
22#include <errno.h>
23
24#include <rtems/system.h>
25
26int pthread_condattr_getpshared(
27  const pthread_condattr_t *attr,
28  int                      *pshared
29)
30{
31  if ( !attr )
32    return EINVAL;
33
34  *pshared = attr->process_shared;
35  return 0;
36}
Note: See TracBrowser for help on using the repository browser.