MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / setDaemon

Function setDaemon

lib/core/threads.py:115–120  ·  view source on GitHub ↗
(thread)

Source from the content-addressed store, hash-verified

113 traceback.print_exc()
114
115def setDaemon(thread):
116 # Reference: http://stackoverflow.com/questions/190010/daemon-threads-explanation
117 if PYVERSION >= "2.6":
118 thread.daemon = True
119 else:
120 thread.setDaemon(True)
121
122def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardException=True, threadChoice=False, startThreadMsg=True):
123 threads = []

Callers 2

_setSocketPreConnectFunction · 0.90
runThreadsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…