Send a crash report when a hung process is detected.
[chromium-blink-merge.git] / native_client_sdk / src / libraries / third_party / pthreads-win32 / attr.c
bloba9d55f4a4b322ab56607540c7870afaf22c3e852
1 /*
2 * attr.c
4 * Description:
5 * This translation unit agregates operations on thread attribute objects.
6 * It is used for inline optimisation.
8 * The included modules are used separately when static executable sizes
9 * must be minimised.
11 * --------------------------------------------------------------------------
13 * Pthreads-win32 - POSIX Threads Library for Win32
14 * Copyright(C) 1998 John E. Bossom
15 * Copyright(C) 1999,2005 Pthreads-win32 contributors
17 * Contact Email: rpj@callisto.canberra.edu.au
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
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.
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.
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
41 #include "pthread.h"
42 #include "implement.h"
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"