Home | History | Annotate | Download | only in pthreads-win32
      1 /*
      2  * attr.c
      3  *
      4  * Description:
      5  * This translation unit agregates operations on thread attribute objects.
      6  * It is used for inline optimisation.
      7  *
      8  * The included modules are used separately when static executable sizes
      9  * must be minimised.
     10  *
     11  * --------------------------------------------------------------------------
     12  *
     13  *      Pthreads-win32 - POSIX Threads Library for Win32
     14  *      Copyright(C) 1998 John E. Bossom
     15  *      Copyright(C) 1999,2005 Pthreads-win32 contributors
     16  *
     17  *      Contact Email: rpj (at) callisto.canberra.edu.au
     18  *
     19  *      The current list of contributors is contained
     20  *      in the file CONTRIBUTORS included with the source
     21  *      code distribution. The list can also be seen at the
     22  *      following World Wide Web location:
     23  *      http://sources.redhat.com/pthreads-win32/contributors.html
     24  *
     25  *      This library is free software; you can redistribute it and/or
     26  *      modify it under the terms of the GNU Lesser General Public
     27  *      License as published by the Free Software Foundation; either
     28  *      version 2 of the License, or (at your option) any later version.
     29  *
     30  *      This library is distributed in the hope that it will be useful,
     31  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
     32  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     33  *      Lesser General Public License for more details.
     34  *
     35  *      You should have received a copy of the GNU Lesser General Public
     36  *      License along with this library in the file COPYING.LIB;
     37  *      if not, write to the Free Software Foundation, Inc.,
     38  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
     39  */
     40 
     41 #include "pthread.h"
     42 #include "implement.h"
     43 
     44 #include "pthread_attr_init.c"
     45 #include "pthread_attr_destroy.c"
     46 #include "pthread_attr_getdetachstate.c"
     47 #include "pthread_attr_setdetachstate.c"
     48 #include "pthread_attr_getstackaddr.c"
     49 #include "pthread_attr_setstackaddr.c"
     50 #include "pthread_attr_getstacksize.c"
     51 #include "pthread_attr_setstacksize.c"
     52 #include "pthread_attr_getscope.c"
     53 #include "pthread_attr_setscope.c"
     54