source: rtems/cpukit/posix/src/pthreadattrsetguardsize.c @ 0e16fa45

5
Last change on this file since 0e16fa45 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: 660 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Thread Creation Attributes
5 * @ingroup POSIXAPI
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2010.
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#if HAVE_DECL_PTHREAD_ATTR_SETGUARDSIZE
22
23#include <pthread.h>
24#include <errno.h>
25
26int pthread_attr_setguardsize(
27  pthread_attr_t  *attr,
28  size_t           guardsize
29)
30{
31  if ( !attr || !attr->is_initialized )
32    return EINVAL;
33
34  attr->guardsize = guardsize;
35  return 0;
36}
37#endif
Note: See TracBrowser for help on using the repository browser.