more Termux/Android mods from Andrew related to mjpegtools
[goodguy/cinelerra.git] / cinelerra-5.1 / thirdparty / src / mjpegtools-2.1.0.patch7
1 --- /dev/null   2021-05-22 06:52:04.572000000 +0300
2 +++ mjpegtools-2.1.0/mpeg2enc/bthread.h 2021-05-23 10:38:11.073808915 +0300
3 @@ -0,0 +1,31 @@
4 +/* BThread main header
5 +   Copyright (C) 2002 Free Software Foundation, Inc.
6 +   This file is part of the GNU C Library.
7 +
8 +   The GNU C Library is free software; you can redistribute it and/or
9 +   modify it under the terms of the GNU Library General Public License as
10 +   published by the Free Software Foundation; either version 2 of the
11 +   License, or (at your option) any later version.
12 +
13 +   The GNU C Library is distributed in the hope that it will be useful,
14 +   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 +   Library General Public License for more details.
17 +
18 +   You should have received a copy of the GNU Library General Public
19 +   License along with the GNU C Library; see the file COPYING.LIB.  If not,
20 +   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 +   Boston, MA 02111-1307, USA.  */
22 +
23 +# define PTHREAD_CANCEL_ENABLE          0x00000010
24 +# define PTHREAD_CANCEL_DISABLE         0x00000000
25 +
26 +# define PTHREAD_CANCEL_ASYNCHRONOUS 0x00000020
27 +# define PTHREAD_CANCEL_DEFERRED     0x00000000
28 +
29 +#define PTHREAD_CANCELED ((void *) -1)
30 +
31 +int pthread_setcancelstate (int , int *);
32 +int pthread_setcanceltype (int , int *);
33 +void pthread_testcancel (void);
34 +int pthread_cancel (pthread_t t);