File: threads.h

package info (click to toggle)
libthreads-perl 1.85-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 512 kB
  • sloc: perl: 1,332; makefile: 48; ansic: 12
file content (17 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _THREADS_H_
#define _THREADS_H_

/* Needed for 5.8.0 */
#ifndef CLONEf_JOIN_IN
#  define CLONEf_JOIN_IN        8
#endif
#ifndef SAVEBOOL
#  define SAVEBOOL(a)
#endif

/* Added in 5.11.x */
#ifndef G_WANT
#  define G_WANT                (128|1)
#endif

#endif