base-hw: Platform_thread::cancel_blocking

Ref #589
This commit is contained in:
Martin Stein 2012-12-19 16:22:43 +01:00 committed by Norman Feske
parent 1f340cbdd4
commit 0d7c6efa84
1 changed files with 3 additions and 10 deletions

View File

@ -111,11 +111,7 @@ namespace Genode {
/**
* Cancel currently blocking operation
*/
void cancel_blocking()
{
kernel_log() << __PRETTY_FUNCTION__ << ": Not implemented\n";
while (1) ;
};
void cancel_blocking() { resume(); }
/**
* Get raw thread state
@ -143,11 +139,8 @@ namespace Genode {
/**
* Set the executing CPU for this thread
*/
void affinity(unsigned cpu)
{
kernel_log() << __PRETTY_FUNCTION__ << ": Not implemented\n";
while (1) ;
};
void affinity(unsigned cpu) {
kernel_log() << __PRETTY_FUNCTION__ << ": not implemented\n"; };
/***************