| 207 | // Note that 1-100 are reserved for implementation, but we are okay since this |
| 208 | // function is only enabled for debugging. |
| 209 | extern "C" void __attribute__((constructor(100))) |
| 210 | dmtcp_initialize_entry_point_test() |
| 211 | { |
| 212 | cpu_set_t cpuset; |
| 213 | pthread_t thread = pthread_self(); |
| 214 | pthread_getaffinity_np(thread, sizeof(cpu_set_t), &cpuset); |
| 215 | } |
| 216 | #endif |
| 217 | |
| 218 | // Initialize remaining components. |
nothing calls this directly
no test coverage detected