コード例 #1
0
ファイル: mt.c プロジェクト: ghostandthemachine/marktab
int main(int argc, const char* argv[])
{
  // If there is a filename as a parameter
  if (argv[1])
  {
    yyin = fopen(argv[1], "r");
    if (yyin == NULL)
    {
      fprintf(stderr, "Can't open: \"%s\"\n", argv[1]);
      return 1;
    }
  }

  // Initailze the marktab runtime and config
  mtr_init();
  mt_conf_init();

  // Parse the input
  yyparse();

  // Output
  mt_output(MTR.sections);

  // Destroy config and runtime

  if (yyin != NULL)
    fclose(yyin);

  return 0;
}
コード例 #2
0
ファイル: minitrace_test.cpp プロジェクト: hrydgard/minitrace
int main() {
	int i;
	mtr_init("trace.json");
	mtr_register_sigint_handler();

	MTR_META_PROCESS_NAME("minitrace_test");
	MTR_META_THREAD_NAME("main thread");

	int long_running_thing_1;
	int long_running_thing_2;

	MTR_START("background", "long_running", &long_running_thing_1);
	MTR_START("background", "long_running", &long_running_thing_2);

	MTR_COUNTER("main", "greebles", 3);
	MTR_BEGIN("main", "outer");
	usleep(80000);
	for (i = 0; i < 3; i++) {
		MTR_BEGIN("main", "inner");
		usleep(40000);
		MTR_END("main", "inner");
		usleep(10000);
		MTR_COUNTER("main", "greebles", 3 * i + 10);
	}
	MTR_STEP("background", "long_running", &long_running_thing_1, "middle step");
	usleep(80000);
	MTR_END("main", "outer");
	MTR_COUNTER("main", "greebles", 0);

	usleep(10000);
	a();

	usleep(50000);
	MTR_INSTANT("main", "the end");
	usleep(10000);
	MTR_FINISH("background", "long_running", &long_running_thing_1);
	MTR_FINISH("background", "long_running", &long_running_thing_2);

	mtr_flush();
	mtr_shutdown();
	return 0;
}