source: rtems/cpukit/posix/src/pthreadattrinit.c @ 77fbbd6

5
Last change on this file since 77fbbd6 was bd5be58f, checked in by Sebastian Huber <sebastian.huber@…>, on 10/10/17 at 05:18:09

posix: Unconditional thread attribute support

Update #2514.

  • Property mode set to 100644
File size: 640 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Thread Attributes Creation
5 * @ingroup POSIXAPI
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-1999.
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
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/posix/pthreadattrimpl.h>
22
23/**
24 * 16.1.1 Thread Creation Attributes, P1003.1c/Draft 10, p, 140
25 */
26int pthread_attr_init(
27  pthread_attr_t  *attr
28)
29{
30  if ( !attr )
31    return EINVAL;
32
33  _POSIX_Threads_Initialize_attributes( attr );
34
35  return 0;
36}
Note: See TracBrowser for help on using the repository browser.