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

Function StartNetworkThread

source/networkop.cpp:114–122  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers 1

InitializeNetworkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected