File: dp.h

package info (click to toggle)
mafft 7.525-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,876 kB
  • sloc: ansic: 95,609; sh: 2,608; ruby: 1,042; perl: 668; makefile: 453
file content (16 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifdef enablemultithread
#define TLS __thread
#else
#define TLS 
#endif

#ifdef enableatomic
#define ATOMICINT atomic_int
#else
#define ATOMICINT int 
#endif

extern TLS int commonAlloc1;
extern TLS int commonAlloc2;
extern TLS int **commonIP;
extern TLS int **commonJP;