summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/pthreadattrsetaffinitynp.c
blob: 1f72e9480319f6080956343391cbee61cd15eaa6 (plain) (tree)
1
2
3
4
5
6


        
                    

                                        










                                                           

                    
                    


                   

                                         


                    





                                


                                                
 
                                                                
                  
   
 
                                        



           
/**
 * @file
 *
 * @ingroup POSIXAPI
 *
 * @brief Pthread Attribute Set Affinity
 */

/*
 *  COPYRIGHT (c) 2014.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#define  _GNU_SOURCE

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#if HAVE_DECL_PTHREAD_ATTR_SETAFFINITY_NP

#include <pthread.h>
#include <errno.h>

int pthread_attr_setaffinity_np(
  pthread_attr_t    *attr,
  size_t             cpusetsize,
  const cpu_set_t   *cpuset
)
{
  if ( attr == NULL || !attr->is_initialized ) {
    return EINVAL;
  }

  if ( cpuset == NULL || cpusetsize != attr->affinitysetsize ) {
    return EINVAL;
  }

  CPU_COPY( cpuset, attr->affinityset );
  return 0;
}

#endif