ObjFW  Diff

Differences From Artifact [2ccde6dcec]:

To Artifact [7f18dc085f]:


146
147
148
149
150
151
152
153
154
155
156
157
158
159
160

bool
of_thread_detach(of_thread_t thread)
{
	return (pthread_detach(thread) == 0);
}

void OF_NO_RETURN
of_thread_exit(void)
{
	pthread_exit(NULL);

	OF_UNREACHABLE
}








|







146
147
148
149
150
151
152
153
154
155
156
157
158
159
160

bool
of_thread_detach(of_thread_t thread)
{
	return (pthread_detach(thread) == 0);
}

void OF_NO_RETURN_FUNC
of_thread_exit(void)
{
	pthread_exit(NULL);

	OF_UNREACHABLE
}