base: remove Cancelable_lock

- base/cancelable_lock.h becomes base/lock.h
- all members become private within base/lock.h
- solely Mutex and Blockade are friends to use base/lock.h

Fixes #3819
This commit is contained in:
Alexander Boettcher
2020-07-14 10:15:30 +02:00
committed by Christian Helmuth
parent 0ed7367c97
commit 41380ff769
23 changed files with 108 additions and 209 deletions

View File

@ -14,7 +14,6 @@
#ifndef _CORE__INCLUDE__IRQ_SESSION_COMPONENT_H_
#define _CORE__INCLUDE__IRQ_SESSION_COMPONENT_H_
#include <base/lock.h>
#include <base/rpc_server.h>
#include <base/rpc_client.h>
#include <util/list.h>

View File

@ -16,7 +16,6 @@
#include <signal_source/rpc_object.h>
#include <base/tslab.h>
#include <base/lock.h>
#include <base/rpc_client.h>
#include <base/rpc_server.h>
#include <util/fifo.h>

View File

@ -15,7 +15,6 @@
#include <base/env.h>
#include <base/log.h>
#include <base/heap.h>
#include <base/lock.h>
using namespace Genode;

View File

@ -12,7 +12,7 @@
*/
/* Genode includes */
#include <base/cancelable_lock.h>
#include <base/lock.h>
#include <cpu/memory_barrier.h>
/* base-internal includes */
@ -37,7 +37,7 @@ static inline bool thread_base_valid(Genode::Thread *thread_base)
** Lock applicant **
********************/
void Cancelable_lock::Applicant::wake_up()
void Lock::Applicant::wake_up()
{
if (!thread_base_valid(_thread_base)) return;
@ -56,17 +56,17 @@ void Cancelable_lock::Applicant::wake_up()
}
/*********************
** Cancelable lock **
*********************/
/***************
** Lock lock **
***************/
void Cancelable_lock::lock()
void Lock::lock()
{
Applicant myself(Thread::myself());
lock(myself);
}
void Cancelable_lock::lock(Applicant &myself)
void Lock::lock(Applicant &myself)
{
spinlock_lock(&_spinlock_state);
@ -126,38 +126,10 @@ void Cancelable_lock::lock(Applicant &myself)
* ! thread_yield();
*/
thread_stop_myself(myself.thread_base());
/*
* We expect to be the lock owner when woken up. If this is not
* the case, the blocking was canceled via core's cancel-blocking
* mechanism. We have to dequeue ourself from the list of applicants
* and reflect this condition as a C++ exception.
*/
spinlock_lock(&_spinlock_state);
if (_owner != myself) {
/*
* Check if we are the applicant to be waken up next,
* otherwise, go through the list of remaining applicants
*/
for (Applicant *a = &_owner; a; a = a->applicant_to_wake_up()) {
/* remove reference to ourself from the applicants list */
if (a->applicant_to_wake_up() == &myself) {
a->applicant_to_wake_up(myself.applicant_to_wake_up());
if (_last_applicant == &myself)
_last_applicant = a;
break;
}
}
spinlock_unlock(&_spinlock_state);
throw Blocking_canceled();
}
spinlock_unlock(&_spinlock_state);
}
void Cancelable_lock::unlock()
void Lock::unlock()
{
spinlock_lock(&_spinlock_state);
@ -190,7 +162,7 @@ void Cancelable_lock::unlock()
}
Cancelable_lock::Cancelable_lock(Cancelable_lock::State initial)
Lock::Lock(Lock::State initial)
:
_spinlock_state(SPINLOCK_UNLOCKED),
_state(UNLOCKED),

View File

@ -17,17 +17,12 @@
void Genode::Mutex::acquire()
{
while (1) {
try {
Lock::Applicant myself(Thread::myself());
if (_lock.lock_owner(myself))
Genode::error("deadlock ahead, mutex=", this, ", return ip=",
__builtin_return_address(0));
Lock::Applicant myself(Thread::myself());
if (_lock.lock_owner(myself))
Genode::error("deadlock ahead, mutex=", this, ", return ip=",
__builtin_return_address(0));
_lock.Cancelable_lock::lock(myself);
return;
} catch (Blocking_canceled) { }
}
_lock.lock(myself);
}
void Genode::Mutex::release()
@ -35,8 +30,7 @@ void Genode::Mutex::release()
Lock::Applicant myself(Thread::myself());
if (!_lock.lock_owner(myself)) {
Genode::error("denied non mutex owner the release, mutex=",
this, ", return ip=",
__builtin_return_address(0));
this, ", return ip=", __builtin_return_address(0));
return;
}
_lock.unlock();