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

View File

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