~mingw-w64/pthreads-w32/w64-patch

46 by bje
1998-07-14 Ben Elliston <bje@cygnus.com>
1
/*
2
 * attr.c
3
 *
4
 * Description:
414 by rpj
Copyright notice updates; module splitting; POSIX version
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
514 by rpj
Copyright year updated
15
 *      Copyright(C) 1999,2005 Pthreads-win32 contributors
414 by rpj
Copyright notice updates; module splitting; POSIX version
16
 * 
460 by rpj
Updated Copyright notice (date and contact address).
17
 *      Contact Email: rpj@callisto.canberra.edu.au
414 by rpj
Copyright notice updates; module splitting; POSIX version
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
46 by bje
1998-07-14 Ben Elliston <bje@cygnus.com>
39
 */
40
41
#include "pthread.h"
42
#include "implement.h"
43
418 by rpj
Major reorganisation of source code; new routine and tests added.
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"