ObjFW  Diff

Differences From Artifact [d7813d4c61]:

To Artifact [c1d87def31]:


99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#elif defined(_WIN32)
	/* FIXME */
	return YES;
#endif
}

static OF_INLINE void
of_thread_exit()
{
#if defined(OF_HAVE_PTHREADS)
	pthread_exit(NULL);
#elif defined(_WIN32)
	ExitThread(0);
#endif
}







|







99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#elif defined(_WIN32)
	/* FIXME */
	return YES;
#endif
}

static OF_INLINE void
of_thread_exit(void)
{
#if defined(OF_HAVE_PTHREADS)
	pthread_exit(NULL);
#elif defined(_WIN32)
	ExitThread(0);
#endif
}