aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-08-08 18:04:27 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-08-08 18:06:12 +0200
commite21595dafe9673ef5d61ef55298c481cb9caff08 (patch)
treefd602bc0b9d031bd05ae6fc6f3bb92528ba47aec
parent39f1bb1a9af1ba6044a8b62331b573df0a23de69 (diff)
process: Name all processes started by osmo-mgcp
-rw-r--r--callagent/MGCPCallAgent.st4
1 files changed, 3 insertions, 1 deletions
diff --git a/callagent/MGCPCallAgent.st b/callagent/MGCPCallAgent.st
index dd9d1d0..672b018 100644
--- a/callagent/MGCPCallAgent.st
+++ b/callagent/MGCPCallAgent.st
@@ -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.