Name of this processor, usually the hostname

Property definitions

mpi $ MPI :: processor_name
	# Name of this processor, usually the hostname
	fun processor_name: String import CString.to_s_with_length `{
		char *name = malloc(MPI_MAX_PROCESSOR_NAME);
		int size;
		MPI_Get_processor_name(name, &size);
		return CString_to_s_with_length(name, size);
	`}
lib/mpi/mpi.nit:52,2--58,3