/* Copyright 1995 Jonathan C. Hardwick */

int	recv_msg_from_mgr	(int arnk [MAXPROCS]);
void	tell_mgr_about_split	(int nprocOld, int neltOld,
				 int nprocNew, int neltNew); 

typedef struct team_split_msg_t {
  int rnkLdrOld;
  int nprocOld;
  int neltOld;
  int rnkLdrNew;
  int nprocNew;
  int neltNew;
} team_split_msg_t;
