| 53 | } |
| 54 | |
| 55 | static void unlockNetAsyncMutex() |
| 56 | { |
| 57 | if(!gNetAsyncMutex) |
| 58 | gNetAsyncMutex = Mutex::createMutex(); |
| 59 | |
| 60 | AssertFatal(gNetAsyncMutex, "Could not create gNetAsyncMutex!"); |
| 61 | |
| 62 | Mutex::unlockMutex(gNetAsyncMutex); |
| 63 | } |
| 64 | |
| 65 | // internal structure for storing information about a name lookup request |
| 66 | struct NameLookupRequest |
no outgoing calls
no test coverage detected