mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 23:53:55 +00:00
committed by
Christian Helmuth
parent
dbcb1ff480
commit
774b1f4277
@ -19,7 +19,7 @@
|
||||
namespace Genode { class Irq_object; };
|
||||
|
||||
|
||||
class Genode::Irq_object : public Thread_deprecated<4096>
|
||||
class Genode::Irq_object : public Thread
|
||||
{
|
||||
private:
|
||||
|
||||
|
@ -50,7 +50,7 @@ Irq_session::Info Irq_session_component::info()
|
||||
|
||||
Irq_object::Irq_object(unsigned irq)
|
||||
:
|
||||
Thread_deprecated<4096>("irq"),
|
||||
Thread(Weight::DEFAULT_WEIGHT, "irq", 4096 /* stack */, Type::NORMAL),
|
||||
_sig_cap(Signal_context_capability()), _irq(irq), _fd(-1)
|
||||
{
|
||||
warning(__func__, " not implemented");
|
||||
|
@ -59,7 +59,7 @@ Irq_session::Info Irq_session_component::info()
|
||||
|
||||
Irq_object::Irq_object(unsigned irq)
|
||||
:
|
||||
Thread_deprecated<4096>("irq"),
|
||||
Thread(Weight::DEFAULT_WEIGHT, "irq", 4096 /* stack */, Type::NORMAL),
|
||||
_sig_cap(Signal_context_capability()), _irq(irq), _fd(-1)
|
||||
{ }
|
||||
|
||||
|
Reference in New Issue
Block a user