improved pid management

This commit is contained in:
hyunghwan.chung
2017-07-27 17:29:45 +00:00
parent e65912ae72
commit f78bf33866
6 changed files with 83 additions and 10 deletions

View File

@ -52,7 +52,7 @@ class System(Apex)
## exit from this loop when there are no other processes running except this finalizer process
if (gc)
{
System logNl: 'Exiting the GC finalization process'.
System logNl: 'Exiting the GC finalization process ' & (thisProcess id) asString.
break
}.
@ -72,7 +72,7 @@ class System(Apex)
}
] ensure: [
Processor unsignal: fin_sem.
System logNl: 'End of GC finalization process'.
System logNl: 'End of GC finalization process ' & (thisProcess id) asString.
].
}