mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
9697f95b8f
This reverts commit 15d999759e
.
108 lines
4.0 KiB
C
108 lines
4.0 KiB
C
/*
|
|
Copyright (C) 1999, 2000 Igor Khasilev, igor@paco.net
|
|
Copyright (C) 2000 Andrey Igoshin, ai@vsu.ru
|
|
|
|
This program 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 Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
/*-
|
|
* Copyright (c) 1998 Alex Nash
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef ACL_PTHREAD_RWLOCK_H
|
|
#define ACL_PTHREAD_RWLOCK_H
|
|
|
|
#include "../stdlib/acl_define.h"
|
|
#include "../thread/acl_pthread.h"
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
# define ACL_HAVE_NO_RWLOCK
|
|
#endif
|
|
|
|
#ifdef ACL_HAVE_NO_RWLOCK
|
|
|
|
#if !defined(ACL_PTHREAD_PROCESS_PRIVATE)
|
|
#define ACL_PTHREAD_PROCESS_PRIVATE 0
|
|
#endif
|
|
#if !defined(ACL_PTHREAD_PROCESS_SHARED)
|
|
#define ACL_PTHREAD_PROCESS_SHARED 1
|
|
#endif
|
|
|
|
#if !defined(ACL_PTHREAD_RWLOCK_INITIALIZER)
|
|
#define ACL_PTHREAD_RWLOCK_INITIALIZER NULL
|
|
|
|
struct acl_pthread_rwlock {
|
|
acl_pthread_mutex_t lock; /* monitor lock acl_pthread_mutex_t */
|
|
int state; /* 0 = idle >0 = # of readers -1 = writer */
|
|
acl_pthread_cond_t read_signal;
|
|
acl_pthread_cond_t write_signal;
|
|
int blocked_writers;
|
|
};
|
|
|
|
struct acl_pthread_rwlockattr {
|
|
int pshared;
|
|
};
|
|
|
|
typedef struct acl_pthread_rwlock *acl_pthread_rwlock_t;
|
|
typedef struct acl_pthread_rwlockattr *acl_pthread_rwlockattr_t;
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
ACL_API int acl_pthread_rwlock_destroy(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlock_init(acl_pthread_rwlock_t *,
|
|
const acl_pthread_rwlockattr_t *);
|
|
ACL_API int acl_pthread_rwlock_rdlock(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlock_tryrdlock(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlock_trywrlock(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlock_unlock(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlock_wrlock(acl_pthread_rwlock_t *);
|
|
ACL_API int acl_pthread_rwlockattr_init(acl_pthread_rwlockattr_t *);
|
|
ACL_API int acl_pthread_rwlockattr_getpshared(const acl_pthread_rwlockattr_t *, int *);
|
|
ACL_API int acl_pthread_rwlockattr_setpshared(acl_pthread_rwlockattr_t *, int);
|
|
ACL_API int acl_pthread_rwlockattr_destroy(acl_pthread_rwlockattr_t *);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif /* ACL_HAVE_NO_RWLOCK */
|
|
#endif /* __ACl_THREAD_RWLOCK__ */
|