⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rwlock.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Read-write lock implementation.   Copyright (C) 1998, 2000 Free Software Foundation, Inc.   This file is part of the GNU C Library.   Contributed by Xavier Leroy <Xavier.Leroy@inria.fr>   and Ulrich Drepper <drepper@cygnus.com>, 1998.   The GNU C Library is free software; you can redistribute it and/or   modify it under the terms of the GNU Library General Public License as   published by the Free Software Foundation; either version 2 of the   License, or (at your option) any later version.   The GNU C Library 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   Library General Public License for more details.   You should have received a copy of the GNU Library General Public   License along with the GNU C Library; see the file COPYING.LIB.  If not,   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,   Boston, MA 02111-1307, USA.  */#include <bits/libc-lock.h>#include <errno.h>#include <pthread.h>#include <stdlib.h>#include "internals.h"#include "queue.h"#include "spinlock.h"#include "restart.h"/* Function called by pthread_cancel to remove the thread from   waiting inside pthread_rwlock_timedrdlock or pthread_rwlock_timedwrlock. */static int rwlock_rd_extricate_func(void *obj, pthread_descr th){  pthread_rwlock_t *rwlock = obj;  int did_remove = 0;  __pthread_lock(&rwlock->__rw_lock, NULL);  did_remove = remove_from_queue(&rwlock->__rw_read_waiting, th);  __pthread_unlock(&rwlock->__rw_lock);  return did_remove;}static int rwlock_wr_extricate_func(void *obj, pthread_descr th){  pthread_rwlock_t *rwlock = obj;  int did_remove = 0;  __pthread_lock(&rwlock->__rw_lock, NULL);  did_remove = remove_from_queue(&rwlock->__rw_write_waiting, th);  __pthread_unlock(&rwlock->__rw_lock);  return did_remove;}/* * Check whether the calling thread already owns one or more read locks on the * specified lock. If so, return a pointer to the read lock info structure * corresponding to that lock. */static pthread_readlock_info *rwlock_is_in_list(pthread_descr self, pthread_rwlock_t *rwlock){  pthread_readlock_info *info;  for (info = THREAD_GETMEM (self, p_readlock_list); info != NULL;       info = info->pr_next)    {      if (info->pr_lock == rwlock)	return info;    }  return NULL;}/* * Add a new lock to the thread's list of locks for which it has a read lock. * A new info node must be allocated for this, which is taken from the thread's * free list, or by calling malloc. If malloc fails, a null pointer is * returned. Otherwise the lock info structure is initialized and pushed * onto the thread's list. */static pthread_readlock_info *rwlock_add_to_list(pthread_descr self, pthread_rwlock_t *rwlock){  pthread_readlock_info *info = THREAD_GETMEM (self, p_readlock_free);  if (info != NULL)    THREAD_SETMEM (self, p_readlock_free, info->pr_next);  else    info = malloc(sizeof *info);  if (info == NULL)    return NULL;  info->pr_lock_count = 1;  info->pr_lock = rwlock;  info->pr_next = THREAD_GETMEM (self, p_readlock_list);  THREAD_SETMEM (self, p_readlock_list, info);  return info;}/* * If the thread owns a read lock over the given pthread_rwlock_t, * and this read lock is tracked in the thread's lock list, * this function returns a pointer to the info node in that list. * It also decrements the lock count within that node, and if * it reaches zero, it removes the node from the list. * If nothing is found, it returns a null pointer. */static pthread_readlock_info *rwlock_remove_from_list(pthread_descr self, pthread_rwlock_t *rwlock){  pthread_readlock_info **pinfo;  for (pinfo = &self->p_readlock_list; *pinfo != NULL; pinfo = &(*pinfo)->pr_next)    {      if ((*pinfo)->pr_lock == rwlock)	{	  pthread_readlock_info *info = *pinfo;	  if (--info->pr_lock_count == 0)	    *pinfo = info->pr_next;	  return info;	}    }  return NULL;}/* * This function checks whether the conditions are right to place a read lock. * It returns 1 if so, otherwise zero. The rwlock's internal lock must be * locked upon entry. */static intrwlock_can_rdlock(pthread_rwlock_t *rwlock, int have_lock_already){  /* Can't readlock; it is write locked. */  if (rwlock->__rw_writer != NULL)    return 0;  /* Lock prefers readers; get it. */  if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_READER_NP)    return 1;  /* Lock prefers writers, but none are waiting. */  if (queue_is_empty(&rwlock->__rw_write_waiting))    return 1;  /* Writers are waiting, but this thread already has a read lock */  if (have_lock_already)    return 1;  /* Writers are waiting, and this is a new lock */  return 0;}/* * This function helps support brain-damaged recursive read locking * semantics required by Unix 98, while maintaining write priority. * This basically determines whether this thread already holds a read lock * already. It returns 1 if so, otherwise it returns 0. * * If the thread has any ``untracked read locks'' then it just assumes * that this lock is among them, just to be safe, and returns 1. * * Also, if it finds the thread's lock in the list, it sets the pointer * referenced by pexisting to refer to the list entry. * * If the thread has no untracked locks, and the lock is not found * in its list, then it is added to the list. If this fails, * then *pout_of_mem is set to 1. */static intrwlock_have_already(pthread_descr *pself, pthread_rwlock_t *rwlock,    pthread_readlock_info **pexisting, int *pout_of_mem){  pthread_readlock_info *existing = NULL;  int out_of_mem = 0, have_lock_already = 0;  pthread_descr self = *pself;  if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_WRITER_NP)    {      if (!self)	*pself = self = thread_self();      existing = rwlock_is_in_list(self, rwlock);      if (existing != NULL	  || THREAD_GETMEM (self, p_untracked_readlock_count) > 0)	have_lock_already = 1;      else	{	  existing = rwlock_add_to_list(self, rwlock);	  if (existing == NULL)	    out_of_mem = 1;	}    }  *pout_of_mem = out_of_mem;  *pexisting = existing;  return have_lock_already;}int__pthread_rwlock_init (pthread_rwlock_t *rwlock,		       const pthread_rwlockattr_t *attr){  __pthread_init_lock(&rwlock->__rw_lock);  rwlock->__rw_readers = 0;  rwlock->__rw_writer = NULL;  rwlock->__rw_read_waiting = NULL;  rwlock->__rw_write_waiting = NULL;  if (attr == NULL)    {      rwlock->__rw_kind = PTHREAD_RWLOCK_DEFAULT_NP;      rwlock->__rw_pshared = PTHREAD_PROCESS_PRIVATE;    }  else    {      rwlock->__rw_kind = attr->__lockkind;      rwlock->__rw_pshared = attr->__pshared;    }  return 0;}strong_alias (__pthread_rwlock_init, pthread_rwlock_init)int__pthread_rwlock_destroy (pthread_rwlock_t *rwlock){  int readers;  _pthread_descr writer;  __pthread_lock (&rwlock->__rw_lock, NULL);  readers = rwlock->__rw_readers;  writer = rwlock->__rw_writer;  __pthread_unlock (&rwlock->__rw_lock);  if (readers > 0 || writer != NULL)    return EBUSY;  return 0;}strong_alias (__pthread_rwlock_destroy, pthread_rwlock_destroy)int__pthread_rwlock_rdlock (pthread_rwlock_t *rwlock){  pthread_descr self = NULL;  pthread_readlock_info *existing;  int out_of_mem, have_lock_already;  have_lock_already = rwlock_have_already(&self, rwlock,					  &existing, &out_of_mem);  if (self == NULL)    self = thread_self ();  for (;;)    {      __pthread_lock (&rwlock->__rw_lock, self);      if (rwlock_can_rdlock(rwlock, have_lock_already))	break;      enqueue (&rwlock->__rw_read_waiting, self);      __pthread_unlock (&rwlock->__rw_lock);      suspend (self); /* This is not a cancellation point */    }  ++rwlock->__rw_readers;  __pthread_unlock (&rwlock->__rw_lock);  if (have_lock_already || out_of_mem)    {      if (existing != NULL)	++existing->pr_lock_count;      else	++self->p_untracked_readlock_count;    }  return 0;}strong_alias (__pthread_rwlock_rdlock, pthread_rwlock_rdlock)int__pthread_rwlock_timedrdlock (pthread_rwlock_t *rwlock,			      const struct timespec *abstime){  pthread_descr self = NULL;  pthread_readlock_info *existing;  int out_of_mem, have_lock_already;  pthread_extricate_if extr;  if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)    return EINVAL;  have_lock_already = rwlock_have_already(&self, rwlock,					  &existing, &out_of_mem);  if (self == NULL)    self = thread_self ();  /* Set up extrication interface */  extr.pu_object = rwlock;  extr.pu_extricate_func = rwlock_rd_extricate_func;  /* Register extrication interface */  __pthread_set_own_extricate_if (self, &extr);  for (;;)    {      __pthread_lock (&rwlock->__rw_lock, self);      if (rwlock_can_rdlock(rwlock, have_lock_already))	break;      enqueue (&rwlock->__rw_read_waiting, self);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -