NativePthread for running thread

Property definitions

pthreads :: pthreads $ Sys :: native_pthread_self
	# `NativePthread` for running thread
	private fun native_pthread_self: NativePthread `{
		pthread_t *id = malloc(sizeof(pthread_t));
		*id = pthread_self();
		return id;
	`}
lib/pthreads/pthreads.nit:47,2--52,3