MCPcopy Create free account
hub / github.com/dborth/vbagx / StartNetworkThread

Function StartNetworkThread

source/networkop.cpp:112–120  ·  view source on GitHub ↗

* StartNetworkThread * * Signals the network thread to resume, or creates a new thread ***************************************************************************/

Source from the content-addressed store, hash-verified

110 * Signals the network thread to resume, or creates a new thread
111 ***************************************************************************/
112void StartNetworkThread()
113{
114 netHalt = 0;
115
116 if(networkthread == LWP_THREAD_NULL)
117 LWP_CreateThread(&networkthread, netcb, NULL, NULL, 0, 40);
118 else
119 LWP_ResumeThread(networkthread);
120}
121
122/****************************************************************************
123 * StopNetworkThread

Callers 1

InitializeNetworkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected