log pid number of worker upon start.

This commit is contained in:
Joris Vink 2019-03-19 13:42:22 +01:00
parent 681a88d535
commit 8afaac9fde
1 changed files with 2 additions and 1 deletions

View File

@ -382,7 +382,8 @@ kore_worker_entry(struct kore_worker *kw)
if (!kore_quiet) {
kore_log(LOG_NOTICE,
"worker %d started (cpu#%d)", kw->id, kw->cpu);
"worker %d started (cpu#%d, pid#%d)",
kw->id, kw->cpu, kw->pid);
}
rcall = kore_runtime_getcall("kore_worker_configure");