(thread *phpThread)
| 183 | } |
| 184 | |
| 185 | func attachRegularThread(thread *phpThread) { |
| 186 | regularThreadMu.Lock() |
| 187 | regularThreads = append(regularThreads, thread) |
| 188 | regularThreadMu.Unlock() |
| 189 | } |
| 190 | |
| 191 | func detachRegularThread(thread *phpThread) { |
| 192 | regularThreadMu.Lock() |
no outgoing calls
no test coverage detected