source: rtems/cpukit/posix/src/pthreadattrinit.c @ be1b8a7

4.115
Last change on this file since be1b8a7 was 0c5317d, checked in by Sebastian Huber <sebastian.huber@…>, on 07/19/13 at 12:33:56

posix: Create pthread implementation header

Move implementation specific parts of pthread.h and pthread.inl into new
header file pthreadimpl.h. The pthread.h contains now only the
application visible API.

  • Property mode set to 100644
File size: 700 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.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <pthread.h>
22#include <errno.h>
23
24#include <rtems/system.h>
25#include <rtems/posix/pthreadimpl.h>
26
27/**
28 * 16.1.1 Thread Creation Attributes, P1003.1c/Draft 10, p, 140
29 */
30int pthread_attr_init(
31  pthread_attr_t  *attr
32)
33{
34  if ( !attr )
35    return EINVAL;
36
37  *attr = _POSIX_Threads_Default_attributes;
38   return 0;
39}
Note: See TracBrowser for help on using the repository browser.