mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-05 10:09:08 +00:00
Track the last progress update with an atomic type, not volatile
This commit is contained in:
parent
834c05038c
commit
f1eede1106
2
main.cpp
2
main.cpp
@ -68,7 +68,7 @@ static int min_detail = 7;
|
||||
int quiet = 0;
|
||||
int quiet_progress = 0;
|
||||
double progress_interval = 0;
|
||||
volatile double last_progress = 0;
|
||||
std::atomic<double> last_progress(0);
|
||||
int geometry_scale = 0;
|
||||
double simplification = 1;
|
||||
size_t max_tile_size = 500000;
|
||||
|
3
main.hpp
3
main.hpp
@ -2,6 +2,7 @@
|
||||
#define MAIN_HPP
|
||||
|
||||
#include <stddef.h>
|
||||
#include <atomic>
|
||||
|
||||
struct index {
|
||||
long long start = 0;
|
||||
@ -23,7 +24,7 @@ extern int geometry_scale;
|
||||
extern int quiet;
|
||||
extern int quiet_progress;
|
||||
extern double progress_interval;
|
||||
extern volatile double last_progress;
|
||||
extern std::atomic<double> last_progress;
|
||||
|
||||
extern size_t CPUS;
|
||||
extern size_t TEMP_FILES;
|
||||
|
Loading…
x
Reference in New Issue
Block a user