update: add pool loaded variable for better sync operation
This commit is contained in:
@ -10,7 +10,8 @@ lm_pool_t *lm_pool_new(char *name, char *url) {
|
||||
lm_pool_t *pool = malloc(sizeof(lm_pool_t));
|
||||
bzero(pool, sizeof(lm_pool_t));
|
||||
|
||||
pool->available = false;
|
||||
pool->available = true;
|
||||
pool->loaded = false;
|
||||
pool->name = name;
|
||||
|
||||
if (NULL != url && !lm_url_init(&pool->url, url)) {
|
||||
|
Reference in New Issue
Block a user