InterviewSolution
| 1. |
What Is Meant By The Statement - "ss7 Stack Can Work In Both Single-threaded And Multi-threaded Systems"? |
|
Answer» The SS7 Stack entities (MTP2, MTP3, ISUP SCCP& TCAP) can be compiled and run as a single thread. This is possible because of the coding guidelines which ensure uniqueness of FUNCTION names and GLOBAL variables. In addition, each SS7 Stack Entity can execute as a separate thread. This is possible because each stack entity is independent and does not share any data structures with other stack entities. Communication between two stack entities is through a message based interface. The SS7 Stack entities (MTP2, MTP3, ISUP SCCP& TCAP) can be compiled and run as a single thread. This is possible because of the coding guidelines which ensure uniqueness of function names and global variables. In addition, each SS7 Stack Entity can execute as a separate thread. This is possible because each stack entity is independent and does not share any data structures with other stack entities. Communication between two stack entities is through a message based interface. |
|