* @brief Proxy Windows @c WaitForSingleObject underneath a pthreads-like wrapper. */
| 127 | * @brief Proxy Windows @c WaitForSingleObject underneath a pthreads-like wrapper. |
| 128 | */ |
| 129 | static int pthread_join( |
| 130 | pthread_t thread, |
| 131 | void** value |
| 132 | ) { |
| 133 | static_cast<void>(value); |
| 134 | WaitForSingleObject(thread, INFINITE); |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | /* See header for documentation */ |
| 139 | int get_cpu_count() |