mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
58 lines
1017 B
C++
58 lines
1017 B
C++
/*
|
|
* \brief Basic locking primitive
|
|
* \author Norman Feske
|
|
* \date 2006-07-26
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__BASE__CANCELABLE_LOCK_H_
|
|
#define _INCLUDE__BASE__CANCELABLE_LOCK_H_
|
|
|
|
#include <base/lock_guard.h>
|
|
#include <base/native_types.h>
|
|
#include <base/blocking.h>
|
|
|
|
namespace Genode {
|
|
|
|
class Cancelable_lock
|
|
{
|
|
private:
|
|
|
|
int volatile _lock;
|
|
|
|
public:
|
|
|
|
enum State { LOCKED, UNLOCKED };
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
Cancelable_lock(State initial = UNLOCKED);
|
|
|
|
/**
|
|
* Try to aquire lock an block while lock is not free
|
|
*
|
|
* This function may throw a Genode::Blocking_canceled exception.
|
|
*/
|
|
void lock();
|
|
|
|
/**
|
|
* Release lock
|
|
*/
|
|
void unlock();
|
|
|
|
/**
|
|
* Lock guard
|
|
*/
|
|
typedef Genode::Lock_guard<Cancelable_lock> Guard;
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__BASE__CANCELABLE_LOCK_H_ */
|