Log name of exiting child from Child::exit()

Fixes #1243.
This commit is contained in:
Christian Helmuth
2014-08-22 14:43:54 +02:00
committed by Norman Feske
parent 53a7b4ca66
commit 0b5f901e58
32 changed files with 51 additions and 52 deletions

View File

@@ -94,7 +94,7 @@ namespace Genode {
*/
virtual void exit(int exit_value)
{
PDBG("child exited with exit value %d", exit_value);
PDBG("child \"%s\" exited with exit value %d", name(), exit_value);
}
/**