(thread *phpThread)
| 250 | } |
| 251 | |
| 252 | func (worker *worker) attachThread(thread *phpThread) { |
| 253 | worker.threadMutex.Lock() |
| 254 | worker.threads = append(worker.threads, thread) |
| 255 | worker.threadMutex.Unlock() |
| 256 | } |
| 257 | |
| 258 | func (worker *worker) detachThread(thread *phpThread) { |
| 259 | worker.threadMutex.Lock() |
no outgoing calls
no test coverage detected