Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/JAVA/Openjdk/test/jdk/sun/nio/cs/mapping/   (Sun/Oracle ©)  Datei vom 13.11.2022 mit Größe 228 B image not shown  

SSL spinlock.c

  Interaktion und
PortierbarkeitC
 

// SPDX-License-Identifier: GPL-2.0
/*
 * ARM64 Spinlock support
 */

#include <stdint.h>

#include "spinlock.h"

void spin_lock(struct spinlock *lock)
{
 int val, res;

 asm volatile(
 "1: ldaxr %w0, [%2]\n"
 " cbnz %w0, 1b\n"
 " mov %w0, #1\n"
 " stxr %w1, %w0, [%2]\n"
 " cbnz %w1, 1b\n"
 : "=&r" (val), "=&r" (res)
 : "r" (&lock->v)
 : "memory");
}

void spin_unlock(struct spinlock *lock)
{
 asm volatile("stlr wzr, [%0]\n" : : "r" (&lock->v) : "memory");
}

Messung V0.5 in Prozent
C=93 H=95 G=93

¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.11Angebot  (Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-07) ¤

*Eine klare Vorstellung vom Zielzustand






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.