smalltalk
/
osmo-st-msc
Archived
1
0
Fork 0

process: Label the processes started by the MSC

This commit is contained in:
Holger Hans Peter Freyther 2012-08-09 01:17:34 +02:00
parent 382a7b8e5b
commit 86236a7791
2 changed files with 7 additions and 1 deletions

View File

@ -132,6 +132,8 @@ BSCConnection subclass: BSCIPAConnection [
"Drain the send queue in a new process"
tx := [
Processor activeProcess name: 'BTS TX queue(%1)' % {self lac}.
self sendPing.
[
[

View File

@ -107,6 +107,8 @@ Object subclass: MSCBSCConnectionHandler [
[
Processor activeProcess name: 'MSCBSCConnectionHandler(%1)' % {aConfig lac}.
[[
aConfig connected: true.
self connections add: bsc.
@ -215,7 +217,9 @@ Object subclass: MSCApplication [
self sipGateway.
self logNotice: 'Serving BSCs now' area: #msc.
[self serveBSC. 'MSC has exited' printNl] fork.
[
Processor activeProcess name: 'BSC Listener'.
self serveBSC. 'MSC has exited' printNl] fork.
]
mgcpCallAgent [