Revision f558b7838033a08947303bc9542cb4a5e23fe9d1 authored by Eric Fischer on 07 April 2017, 20:21:38 UTC, committed by Eric Fischer on 07 April 2017, 20:25:05 UTC
1 parent 1c1ae6a
Raw File
main.hpp
struct index {
	long long start;
	long long end;
	unsigned long long index;
	short segment;
	unsigned short t : 2;
	unsigned long long seq : (64 - 18);  // pack with segment and t to stay in 32 bytes
};

void checkdisk(struct reader *r, int nreader);

extern int geometry_scale;
extern int quiet;

extern size_t CPUS;
extern size_t TEMP_FILES;

extern size_t max_tile_size;
back to top