Remove inconsistent use of 'is_' prefix

Fixes #1963
This commit is contained in:
Norman Feske
2016-05-11 18:21:47 +02:00
committed by Christian Helmuth
parent 15141f3ca7
commit 807be83b1b
225 changed files with 876 additions and 705 deletions

View File

@ -86,7 +86,7 @@ Child::Process::Process(Dataspace_capability elf_ds,
if (!elf.valid())
throw Invalid_executable();
bool const dynamically_linked = elf.is_dynamically_linked();
bool const dynamically_linked = elf.dynamically_linked();
local_rm.detach(elf_addr);

View File

@ -397,8 +397,8 @@ Thread *Thread::myself()
if (tls != 0)
return ((Native_thread::Meta_data *)tls)->thread_base;
bool const is_main_thread = (lx_getpid() == lx_gettid());
if (is_main_thread)
bool const called_by_main_thread = (lx_getpid() == lx_gettid());
if (called_by_main_thread)
return 0;
/*