| 944 | |
| 945 | |
| 946 | int SyntheticClient::start_thread() |
| 947 | { |
| 948 | ceph_assert(!thread_id); |
| 949 | |
| 950 | pthread_create(&thread_id, NULL, synthetic_client_thread_entry, this); |
| 951 | ceph_assert(thread_id); |
| 952 | return 0; |
| 953 | } |
| 954 | |
| 955 | int SyntheticClient::join_thread() |
| 956 | { |
no test coverage detected