| 1366 | } |
| 1367 | |
| 1368 | void thread_init() { |
| 1369 | master_lock.lock(); |
| 1370 | thread_id = ++thread_counter; |
| 1371 | master_lock.unlock(); |
| 1372 | #ifdef ENABLE_THREADS |
| 1373 | pSingular_initialize_thread(); |
| 1374 | siInit(global_argv0); |
| 1375 | #endif |
| 1376 | setOption('q'); |
| 1377 | // setOption('b'); |
| 1378 | } |
| 1379 | |
| 1380 | void *thread_main(void *arg) { |
| 1381 | ThreadState *ts = (ThreadState *)arg; |
no test coverage detected