Files
openstreetmap-mod_tile-pyth…/includes/render_submit_queue.h
2013-08-09 18:46:10 -06:00

20 lines
322 B
C

#ifndef RENDERSUBQUEUE_H
#define RENDERSUBQUEUE_H
#ifdef __cplusplus
extern "C" {
#endif
int work_complete;
void enqueue(const char *xmlname, int x, int y, int z);
void spawn_workers(int num, const char *socketpath, int maxLoad);
void wait_for_empty_queue();
void finish_workers();
#ifdef __cplusplus
}
#endif
#endif