| 7169 | } |
| 7170 | |
| 7171 | void redisSetCpuAffinity(const char *cpulist) { |
| 7172 | #ifdef USE_SETCPUAFFINITY |
| 7173 | setcpuaffinity(cpulist); |
| 7174 | #else |
| 7175 | UNUSED(cpulist); |
| 7176 | #endif |
| 7177 | } |
| 7178 | |
| 7179 | /* Send a notify message to systemd. Returns sd_notify return code which is |
| 7180 | * a positive number on success. */ |
no test coverage detected