mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-03 07:49:53 +00:00
19 lines
339 B
C
19 lines
339 B
C
#ifndef RENDERSUBQUEUE_H
|
|
#define RENDERSUBQUEUE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
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);
|
|
void finish_workers(void);
|
|
void print_statistics(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|