hw: remove redundant file from signal library

The file seems to be there for historical reasons only.

Ref #956
This commit is contained in:
Stefan Kalkowski 2015-06-22 14:04:28 +02:00 committed by Christian Helmuth
parent 691df908aa
commit 57e2f3affc
3 changed files with 10 additions and 33 deletions

View File

@ -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

View File

@ -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);
}

View File

@ -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 **
*********************/