X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fnormalize_cache.c;h=3ae9124488de675cb4736fd3b632a7484d80dc67;hb=64dccf5757a22cedd3c21ca834e3e02f39dd0504;hp=a863fc378e69d61abd2e6a14c81b66ca4507b80a;hpb=b73890ede1ee6eeb8a07937733871077df6f15b9;p=pazpar2-moved-to-github.git diff --git a/src/normalize_cache.c b/src/normalize_cache.c index a863fc3..3ae9124 100644 --- a/src/normalize_cache.c +++ b/src/normalize_cache.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2010 Index Data + Copyright (C) Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #endif +#include "ppmutex.h" #include "normalize_cache.h" #include "pazpar2_config.h" @@ -50,8 +51,7 @@ normalize_cache_t normalize_cache_create(void) nc->nmem = nmem; nc->items = 0; nc->mutex = 0; - yaz_mutex_create(&nc->mutex); - yaz_mutex_set_name(nc->mutex, "normalize_cache"); + pazpar2_mutex_create(&nc->mutex, "normalize_cache"); return nc; }