nova: provide missing Rpc_entrypoint::is_myself()

The symbol is implemented by the common implementation but was missing
from the nova-specific fork of rpc_entrypoint.cc.
This commit is contained in:
Christian Helmuth 2019-06-04 17:11:18 +02:00
parent 811410fdbb
commit 72478a9e31

View File

@ -205,6 +205,12 @@ void Rpc_entrypoint::activate()
}
bool Rpc_entrypoint::is_myself() const
{
return (Thread::myself() == this);
}
Rpc_entrypoint::Rpc_entrypoint(Pd_session *pd_session, size_t stack_size,
const char *name, bool start_on_construction,
Affinity::Location location)