| 2637 | } |
| 2638 | |
| 2639 | static int updateSighandlerEnabled(int val, int prev, const char **err) { |
| 2640 | UNUSED(err); |
| 2641 | UNUSED(prev); |
| 2642 | if (val) |
| 2643 | setupSignalHandlers(); |
| 2644 | else |
| 2645 | removeSignalHandlers(); |
| 2646 | return 1; |
| 2647 | } |
| 2648 | |
| 2649 | static int updateMaxclients(long long val, long long prev, const char **err) { |
| 2650 | /* Try to check if the OS is capable of supporting so many FDs. */ |
nothing calls this directly
no test coverage detected