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

process: Name all processes started by osmo-mgcp

This commit is contained in:
Holger Hans Peter Freyther 2012-08-08 18:04:27 +02:00
parent 39f1bb1a9a
commit e21595dafe
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
"
(C) 2010-2011 by Holger Hans Peter Freyther
(C) 2010-2012 by Holger Hans Peter Freyther
All Rights Reserved
This program is free software: you can redistribute it and/or modify
@ -68,6 +68,7 @@ Object subclass: MGCPCallAgentBase [
"Receive datagrams from the socket..."
rx := [
Processor activeProcess name: 'MGCP RX'.
[ | data |
data := socket next.
data ifNotNil: [
@ -78,6 +79,7 @@ Object subclass: MGCPCallAgentBase [
"Send data to the MGWs"
tx := [
Processor activeProcess name: 'MGCP TX'.
[ | data |
data := queue next.
socket nextPut: data.