export go_is_context_done
(threadIndex C.uintptr_t)
| 753 | |
| 754 | //export go_is_context_done |
| 755 | func go_is_context_done(threadIndex C.uintptr_t) C.bool { |
| 756 | return C.bool(phpThreads[threadIndex].frankenPHPContext().isDone) |
| 757 | } |
| 758 | |
| 759 | func convertArgs(args []string) (C.int, []*C.char) { |
| 760 | argc := C.int(len(args)) |
nothing calls this directly
no test coverage detected