()
| 144 | } |
| 145 | |
| 146 | func Config() PHPConfig { |
| 147 | cConfig := C.frankenphp_get_config() |
| 148 | |
| 149 | return PHPConfig{ |
| 150 | Version: Version(), |
| 151 | ZTS: bool(cConfig.zts), |
| 152 | ZendSignals: bool(cConfig.zend_signals), |
| 153 | ZendMaxExecutionTimers: bool(cConfig.zend_max_execution_timers), |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | func calculateMaxThreads(opt *opt) (numWorkers int, _ error) { |
| 158 | maxProcs := runtime.GOMAXPROCS(0) * 2 |