source: rtems/cpukit/posix/src/pthreadattrinit.c @ 185e46f

4.115
Last change on this file since 185e46f was 185e46f, checked in by Jennifer Averett <jennifer.averett@…>, on 01/31/14 at 14:54:45

posix: Add POSIX thread affinity attribute support.

With the addition of pthread affinity information in pthread_attr_t,
the existing code for pthread_attr_t had to be adjusted.

  • Property mode set to 100644
File size: 703 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  _POSIX_Threads_Initialize_attributes( attr );
38
39  return 0;
40}
Note: See TracBrowser for help on using the repository browser.