| 307 | |
| 308 | |
| 309 | void* Control::AccessGrantServiceLoop(void*) |
| 310 | { |
| 311 | while (true) { |
| 312 | ChannelRequestRecord *req = gBTS.nextChannelRequest(); |
| 313 | if (!req) continue; |
| 314 | AccessGrantResponder( |
| 315 | req->RA(), req->frame(), |
| 316 | req->RSSI(), req->timingError() |
| 317 | ); |
| 318 | delete req; |
| 319 | } |
| 320 | return NULL; |
| 321 | } |
| 322 | |
| 323 | |
| 324 |
nothing calls this directly
no test coverage detected