2007-08-10 00:03:17 +04:00
|
|
|
/*
|
2011-01-11 00:54:38 +03:00
|
|
|
* Copyright 2007-2011, Ingo Weinhold, ingo_weinhold@gmx.de.
|
2007-08-10 00:03:17 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_CONDITION_VARIABLE_H
|
|
|
|
#define _KERNEL_CONDITION_VARIABLE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
2007-09-03 02:21:26 +04:00
|
|
|
#include <debug.h>
|
|
|
|
|
2007-08-10 00:03:17 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2008-04-20 19:19:48 +04:00
|
|
|
#include <util/DoublyLinkedList.h>
|
2007-08-10 00:03:17 +04:00
|
|
|
#include <util/OpenHashTable.h>
|
|
|
|
|
|
|
|
|
2009-06-23 03:49:05 +04:00
|
|
|
struct ConditionVariable;
|
2007-08-10 00:03:17 +04:00
|
|
|
|
2007-08-27 03:53:12 +04:00
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
struct ConditionVariableEntry
|
|
|
|
: DoublyLinkedListLinkImpl<ConditionVariableEntry> {
|
2007-08-27 03:53:12 +04:00
|
|
|
public:
|
2007-09-03 02:21:26 +04:00
|
|
|
#if KDEBUG
|
2008-04-22 22:32:15 +04:00
|
|
|
inline ConditionVariableEntry();
|
|
|
|
inline ~ConditionVariableEntry();
|
2007-09-03 02:21:26 +04:00
|
|
|
#endif
|
|
|
|
|
2008-05-17 14:21:37 +04:00
|
|
|
bool Add(const void* object);
|
|
|
|
status_t Wait(uint32 flags = 0, bigtime_t timeout = 0);
|
2008-04-23 01:46:23 +04:00
|
|
|
status_t Wait(const void* object, uint32 flags = 0,
|
|
|
|
bigtime_t timeout = 0);
|
2007-08-27 03:53:12 +04:00
|
|
|
|
2009-10-22 03:44:59 +04:00
|
|
|
inline status_t WaitStatus() const { return fWaitStatus; }
|
|
|
|
|
|
|
|
inline ConditionVariable* Variable() const { return fVariable; }
|
2008-04-22 22:32:15 +04:00
|
|
|
|
2008-04-23 01:46:23 +04:00
|
|
|
private:
|
2008-07-17 02:43:50 +04:00
|
|
|
inline void AddToVariable(ConditionVariable* variable);
|
2008-04-23 01:46:23 +04:00
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
private:
|
|
|
|
ConditionVariable* fVariable;
|
2011-01-11 00:54:38 +03:00
|
|
|
Thread* fThread;
|
2008-05-17 14:21:37 +04:00
|
|
|
status_t fWaitStatus;
|
2007-08-27 03:53:12 +04:00
|
|
|
|
2009-06-23 03:49:05 +04:00
|
|
|
friend struct ConditionVariable;
|
2007-08-10 00:03:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-07-27 04:39:12 +04:00
|
|
|
struct ConditionVariable {
|
2007-08-10 00:03:17 +04:00
|
|
|
public:
|
2008-04-23 01:46:23 +04:00
|
|
|
void Init(const void* object,
|
|
|
|
const char* objectType);
|
|
|
|
// for anonymous (unpublished) cvars
|
|
|
|
|
2007-08-10 00:03:17 +04:00
|
|
|
void Publish(const void* object,
|
|
|
|
const char* objectType);
|
2011-06-12 04:00:23 +04:00
|
|
|
void Unpublish(bool schedulerLocked = false);
|
2008-04-22 22:32:15 +04:00
|
|
|
|
2011-06-12 04:00:23 +04:00
|
|
|
inline void NotifyOne(bool schedulerLocked = false,
|
2009-10-22 03:44:59 +04:00
|
|
|
status_t result = B_OK);
|
2011-06-12 04:00:23 +04:00
|
|
|
inline void NotifyAll(bool schedulerLocked = false,
|
2009-10-22 03:44:59 +04:00
|
|
|
status_t result = B_OK);
|
2008-04-22 22:32:15 +04:00
|
|
|
|
2009-12-03 16:05:39 +03:00
|
|
|
static void NotifyOne(const void* object,
|
2011-06-12 04:00:23 +04:00
|
|
|
bool schedulerLocked = false,
|
2009-12-03 15:24:17 +03:00
|
|
|
status_t result = B_OK);
|
2009-12-03 16:05:39 +03:00
|
|
|
static void NotifyAll(const void* object,
|
2011-06-12 04:00:23 +04:00
|
|
|
bool schedulerLocked = false,
|
2009-12-03 15:24:17 +03:00
|
|
|
status_t result = B_OK);
|
2009-12-03 15:47:29 +03:00
|
|
|
// (both methods) caller must ensure that
|
|
|
|
// the variable is not unpublished
|
|
|
|
// concurrently
|
2009-12-03 15:24:17 +03:00
|
|
|
|
2008-07-17 02:43:50 +04:00
|
|
|
void Add(ConditionVariableEntry* entry);
|
2008-04-23 01:46:23 +04:00
|
|
|
|
2008-07-23 00:36:32 +04:00
|
|
|
status_t Wait(uint32 flags = 0, bigtime_t timeout = 0);
|
|
|
|
// all-in one, i.e. doesn't need a
|
|
|
|
// ConditionVariableEntry
|
|
|
|
|
2008-09-03 18:53:01 +04:00
|
|
|
const void* Object() const { return fObject; }
|
|
|
|
const char* ObjectType() const { return fObjectType; }
|
2008-04-22 22:32:15 +04:00
|
|
|
|
|
|
|
static void ListAll();
|
|
|
|
void Dump() const;
|
2007-08-10 00:03:17 +04:00
|
|
|
|
|
|
|
private:
|
2011-06-12 04:00:23 +04:00
|
|
|
void _Notify(bool all, bool schedulerLocked,
|
2009-10-22 03:44:59 +04:00
|
|
|
status_t result);
|
|
|
|
void _NotifyLocked(bool all, status_t result);
|
2007-08-10 00:03:17 +04:00
|
|
|
|
|
|
|
protected:
|
2008-04-22 22:32:15 +04:00
|
|
|
typedef DoublyLinkedList<ConditionVariableEntry> EntryList;
|
2008-04-20 19:19:48 +04:00
|
|
|
|
2007-08-10 00:03:17 +04:00
|
|
|
const void* fObject;
|
|
|
|
const char* fObjectType;
|
2008-04-20 19:19:48 +04:00
|
|
|
EntryList fEntries;
|
2009-07-27 04:39:12 +04:00
|
|
|
ConditionVariable* fNext;
|
2007-08-10 00:03:17 +04:00
|
|
|
|
2009-06-23 03:49:05 +04:00
|
|
|
friend struct ConditionVariableEntry;
|
|
|
|
friend struct ConditionVariableHashDefinition;
|
2007-08-10 00:03:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
#if KDEBUG
|
2007-08-10 00:03:17 +04:00
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
inline
|
|
|
|
ConditionVariableEntry::ConditionVariableEntry()
|
|
|
|
: fVariable(NULL)
|
2007-08-10 00:03:17 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
inline
|
|
|
|
ConditionVariableEntry::~ConditionVariableEntry()
|
2007-08-10 00:03:17 +04:00
|
|
|
{
|
2008-04-22 22:32:15 +04:00
|
|
|
if (fVariable != NULL) {
|
|
|
|
panic("Destroying condition variable entry %p, but it's still "
|
|
|
|
"attached to variable %p\n", this, fVariable);
|
|
|
|
}
|
2007-08-10 00:03:17 +04:00
|
|
|
}
|
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
#endif
|
2007-08-10 00:03:17 +04:00
|
|
|
|
|
|
|
|
2007-08-27 03:53:12 +04:00
|
|
|
inline void
|
2011-06-12 04:00:23 +04:00
|
|
|
ConditionVariable::NotifyOne(bool schedulerLocked, status_t result)
|
2007-08-10 00:03:17 +04:00
|
|
|
{
|
2011-06-12 04:00:23 +04:00
|
|
|
_Notify(false, schedulerLocked, result);
|
2007-08-10 00:03:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 22:32:15 +04:00
|
|
|
inline void
|
2011-06-12 04:00:23 +04:00
|
|
|
ConditionVariable::NotifyAll(bool schedulerLocked, status_t result)
|
2007-08-27 03:53:12 +04:00
|
|
|
{
|
2011-06-12 04:00:23 +04:00
|
|
|
_Notify(true, schedulerLocked, result);
|
2007-08-27 03:53:12 +04:00
|
|
|
}
|
2007-08-10 00:03:17 +04:00
|
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
extern void condition_variable_init();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _KERNEL_CONDITION_VARIABLE_H */
|