X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fmutex.h;h=4a740e53ca8d2b61d631fb2e1ae663fb0060cdce;hp=ff8babbd429865dccfa61fe8ebd18c8664cfcf2f;hb=211fa151f2239cfecd08a212e00be8d27f7a35a7;hpb=9f11f349958f122419856006d9295eb0ce41274d diff --git a/include/yaz/mutex.h b/include/yaz/mutex.h index ff8babb..4a740e5 100644 --- a/include/yaz/mutex.h +++ b/include/yaz/mutex.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data. + * Copyright (C) 1995-2011 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -52,17 +52,6 @@ typedef struct yaz_cond *YAZ_COND; */ YAZ_EXPORT void yaz_mutex_create(YAZ_MUTEX *mutexp); -/** \brief create MUTEX with custom MUTEX flags - \param mutexp is pointer to MUTEX handle (*mutexp must be NULL) - \param attr is flags defined by PTHREAD_MUTEX_xxx - - It is important that *mutexp is NULL. If not, yaz_mutex_create will - not modify the handle (assumes it is already created!) - - This calls yax_mutex_create_attr(mutexp, PTHREAD_MUTEX_NORMAL) - */ -YAZ_EXPORT void yaz_mutex_create_attr(YAZ_MUTEX *mutexp, int flags); - /** \brief enter critical section / AKA lock \param mutex MUTEX handle */