MCPcopy Create free account
hub / github.com/apache/nuttx / multi_thread_executer

Function multi_thread_executer

tools/parsememdump.py:99–107  ·  view source on GitHub ↗
(cmd)

Source from the content-addressed store, hash-verified

97
98
99def multi_thread_executer(cmd):
100 result = ""
101 p = os.popen(cmd, "r")
102 while True:
103 line = p.readline()
104 if line == "":
105 break
106 result += f" {line}"
107 return result
108
109
110class addr2line_db:

Callers

nothing calls this directly

Calls 1

readlineMethod · 0.45

Tested by

no test coverage detected