Esempio n. 1
0
void exit_application()
{
	vrDbgPrintfN(ALWAYS_DBGLVL, "TRAVEL: quitting.\n");
	vrExit();

	exit(0);
}
Esempio n. 2
0
File: vmd.C Progetto: quolc/VMDLeap
void VMDshutdown() {
  vmd_finalize_tcl();  // after all VMDApp instances are deleted

#ifdef VMDCAVE
  if (DISPLAY_USES_CAVE(which_display)) {  // call the CAVE specific exit
    CAVEExit();
  }
#endif
#ifdef VMDFREEVR
  if (DISPLAY_USES_FREEVR(which_display)) {  // call the FreeVR specific exit
    vrExit();
  }
#endif
#ifdef VMDMPI
  vmd_mpi_fini();
#endif
}
Esempio n. 3
0
void exit_application()
{
	vrDbgPrintfN(ALWAYS_DBGLVL, "input viewer: quitting.\n");
	vrExit();
}
Esempio n. 4
0
void vrlib_exit (void)
{
    vrExit ();
    return;
}