Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 382d367fc8a40207ee242a171ab0f6ccf563fbe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

#include "etLogger.h"
#include "etMSCLogger.h"

void Class2_ff(void) {
	ET_MSC_LOGGER_SYNC_ENTRY("Class2", "ff")

	ET_MSC_LOGGER_SYNC_EXIT
}

void CLass1_f(void) {
	ET_MSC_LOGGER_SYNC_ENTRY("Class1", "f")
	Class2_ff();
	ET_MSC_LOGGER_SYNC_EXIT
}

//int main(void) {
//
//	etLogger_logInfo("***   T H E   B E G I N   ***");
//
//	ET_MSC_LOGGER_OPEN("main");
//	CLass1_f();
//	ET_MSC_LOGGER_CLOSE
//
//	etLogger_logInfo("***   T H E   E N D   ***");
//
//	return 0;
//}

Back to the top