base: remove deprecated cancel_blocking() support
for threads. Fixes #3806
This commit is contained in:
committed by
Norman Feske
parent
ce6f4dffe5
commit
f3efbe50bb
@@ -119,11 +119,6 @@ class Genode::Platform_thread : public List<Platform_thread>::Element
|
||||
*/
|
||||
void resume();
|
||||
|
||||
/**
|
||||
* Cancel currently blocking operation
|
||||
*/
|
||||
void cancel_blocking();
|
||||
|
||||
/**
|
||||
* Override thread state with 's'
|
||||
*
|
||||
|
||||
@@ -205,12 +205,6 @@ void Platform_thread::state(Thread_state)
|
||||
}
|
||||
|
||||
|
||||
void Platform_thread::cancel_blocking()
|
||||
{
|
||||
seL4_Signal(_info.lock_sel.value());
|
||||
}
|
||||
|
||||
|
||||
bool Platform_thread::install_mapping(Mapping const &mapping)
|
||||
{
|
||||
return _pd->install_mapping(mapping, name());
|
||||
|
||||
@@ -143,12 +143,6 @@ void Thread::start()
|
||||
}
|
||||
|
||||
|
||||
void Thread::cancel_blocking()
|
||||
{
|
||||
warning(__func__, " not implemented");
|
||||
}
|
||||
|
||||
|
||||
Native_utcb *Thread::utcb()
|
||||
{
|
||||
if (!_stack)
|
||||
|
||||
Reference in New Issue
Block a user