void *Calcs_Thread(void *null)
{
	while(1==1) {
		Calcs();
	}
	pthread_exit((void *) 0);
}
