int start_workers(char **argv)
{
	N = 6; // Number of tasks that will be started here.
	tid = new int[N];
	cc = pvm_spawn("matw", &argv[1], 0, "majestix", 1, &tid[0]);
	ASSERT(cc);
	cc = pvm_spawn("matw", &argv[1], 0, "atlantix", 1, &tid[1]);
	ASSERT(cc);
	cc = pvm_spawn("matw", &argv[1], 0, "obelix", 1, &tid[1]);
	ASSERT(cc);
	cc = pvm_spawn("matw", &argv[1], 0, "idiotix", 1, &tid[1]);
	ASSERT(cc);
	cc = pvm_spawn("matw", &argv[1], 0, "pacifix", 1, &tid[1]);
	ASSERT(cc);
	cc = pvm_spawn("matw", &argv[1], 0, "geriatrix", 1, &tid[1]);
	ASSERT(cc);
	
	return (1); 
}
