Example #1
0
/*----------------------------------------------------------------------------------------------*/
void Commando::Start()
{
	Start_Thread(Commando_Thread, NULL);

	if(gopt.verbose)
		fprintf(stdout,"Commando thread started\n");
}
Example #2
0
/*----------------------------------------------------------------------------------------------*/
void Keyboard::Start()
{
	Start_Thread(Keyboard_Thread, NULL);

	if(gopt.verbose)
		fprintf(stdout,"Keyboard thread started\n");
}
Example #3
0
/*----------------------------------------------------------------------------------------------*/
void Patience::Start()
{
	Start_Thread(Patience_Thread, NULL);

	if(gopt.verbose)
		fprintf(stdout,"Patience thread started\n");
}
Example #4
0
/*----------------------------------------------------------------------------------------------*/
void Ephemeris::Start()
{

	Start_Thread(Ephemeris_Thread, NULL);

	if(gopt.verbose)
		printf("Ephemeris thread started\n");

}
Example #5
0
/*----------------------------------------------------------------------------------------------*/
void Correlator::Start()
{

	/* With new priority specified */
	Start_Thread(Correlator_Thread, NULL);

	if(gopt.verbose)
		fprintf(stdout,"Correlator thread started\n");
}