mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
hw: remove redundant file from signal library
The file seems to be there for historical reasons only. Ref #956
This commit is contained in:
parent
691df908aa
commit
57e2f3affc
@ -20,9 +20,9 @@ SRC_CC += process/process.cc
|
||||
SRC_CC += elf/elf_binary.cc
|
||||
SRC_CC += console/console.cc
|
||||
SRC_CC += lock/lock.cc
|
||||
SRC_CC += signal/signal.cc signal/common.cc signal/platform.cc
|
||||
SRC_CC += server/server.cc
|
||||
SRC_CC += server/common.cc
|
||||
SRC_CC += signal/common.cc signal/signal.cc
|
||||
SRC_CC += thread/thread.cc
|
||||
SRC_CC += thread/myself.cc
|
||||
SRC_CC += thread/bootstrap.cc
|
||||
|
@ -1,32 +0,0 @@
|
||||
/*
|
||||
* \brief Implementations of the signaling framework specific for HW-core
|
||||
* \author Martin Stein
|
||||
* \date 2012-05-05
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012-2015 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.
|
||||
*/
|
||||
|
||||
|
||||
/* Genode includes */
|
||||
#include <signal_session/connection.h>
|
||||
|
||||
/* base-hw includes */
|
||||
#include <kernel/interface.h>
|
||||
|
||||
using namespace Genode;
|
||||
|
||||
/************************
|
||||
** Signal transmitter **
|
||||
************************/
|
||||
void Signal_transmitter::submit(unsigned cnt)
|
||||
{
|
||||
{
|
||||
Trace::Signal_submit trace_event(cnt);
|
||||
}
|
||||
Kernel::submit_signal(_context.dst(), cnt);
|
||||
}
|
@ -82,6 +82,15 @@ void Signal_context::submit(unsigned num)
|
||||
Signal_connection * Signal_transmitter::connection() { return signal_connection(); }
|
||||
|
||||
|
||||
void Signal_transmitter::submit(unsigned cnt)
|
||||
{
|
||||
{
|
||||
Trace::Signal_submit trace_event(cnt);
|
||||
}
|
||||
Kernel::submit_signal(_context.dst(), cnt);
|
||||
}
|
||||
|
||||
|
||||
/*********************
|
||||
** Signal_receiver **
|
||||
*********************/
|
||||
|
Loading…
Reference in New Issue
Block a user