Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/perf/util/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  rwsem.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
#include "util.h"
#include "rwsem.h"

#if RWS_ERRORCHECK
#include "mutex.h"
#endif

int init_rwsem(struct rw_semaphore *sem)
{
#if RWS_ERRORCHECK
 mutex_init(&sem->mtx);
 return 0;
#else
 return pthread_rwlock_init(&sem->lock, NULL);
#endif
}

int exit_rwsem(struct rw_semaphore *sem)
{
#if RWS_ERRORCHECK
 mutex_destroy(&sem->mtx);
 return 0;
#else
 return pthread_rwlock_destroy(&sem->lock);
#endif
}

int down_read(struct rw_semaphore *sem)
 NO_THREAD_SAFETY_ANALYSIS
{
#if RWS_ERRORCHECK
 mutex_lock(&sem->mtx);
 return 0;
#else
 return perf_singlethreaded ? 0 : pthread_rwlock_rdlock(&sem->lock);
#endif
}

int up_read(struct rw_semaphore *sem)
 NO_THREAD_SAFETY_ANALYSIS
{
#if RWS_ERRORCHECK
 mutex_unlock(&sem->mtx);
 return 0;
#else
 return perf_singlethreaded ? 0 : pthread_rwlock_unlock(&sem->lock);
#endif
}

int down_write(struct rw_semaphore *sem)
 NO_THREAD_SAFETY_ANALYSIS
{
#if RWS_ERRORCHECK
 mutex_lock(&sem->mtx);
 return 0;
#else
 return perf_singlethreaded ? 0 : pthread_rwlock_wrlock(&sem->lock);
#endif
}

int up_write(struct rw_semaphore *sem)
 NO_THREAD_SAFETY_ANALYSIS
{
#if RWS_ERRORCHECK
 mutex_unlock(&sem->mtx);
 return 0;
#else
 return perf_singlethreaded ? 0 : pthread_rwlock_unlock(&sem->lock);
#endif
}

Messung V0.5
C=95 H=94 G=94

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.