genode/repos/base/include/base/thread_state.h
Norman Feske 14d3c4cb5e Remove Cpu_session::State_access_failed exception
This patch removes the exception formerly thrown by 'Cpu_thread::state'
and turns the 'Thread_state' structure into a plain compound type w/o a
constructor.

Issue #5245
Fixes #5250
2024-06-20 12:56:20 +02:00

30 lines
594 B
C++

/*
* \brief Thread state
* \author Norman Feske
* \date 2007-07-30
*/
/*
* Copyright (C) 2007-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__BASE__THREAD_STATE_H_
#define _INCLUDE__BASE__THREAD_STATE_H_
#include <cpu/cpu_state.h>
namespace Genode { struct Thread_state; }
struct Genode::Thread_state
{
enum class State { VALID, UNAVAILABLE, PAGE_FAULT, EXCEPTION } state;
Cpu_state cpu;
};
#endif /* _INCLUDE__BASE__THREAD_STATE_H_ */