MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / serviceLoop2

Method serviceLoop2

Peering/Peering.cpp:141–150  ·  view source on GitHub ↗

this loop services, among other things, the IND and ACK HANDOVER_COMPLETE, which affects the handover gap in the call. so it needs to be short. Like 10msec = 10000usec

Source from the content-addressed store, hash-verified

139// this loop services, among other things, the IND and ACK HANDOVER_COMPLETE, which affects the
140// handover gap in the call. so it needs to be short. Like 10msec = 10000usec
141void* PeerInterface::serviceLoop2(void*)
142{
143 // gTRX.C0() needs some time to get ready
144 sleep(8);
145 while (1) {
146 drive();
147 usleep(10000);
148 }
149 return NULL;
150}
151
152
153void PeerInterface::drive()

Callers 1

barFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected