uti: Add/Modify test programs

Change-Id: I27a39d6b11af5243f93d07c31c2ef80f6727dd53
This commit is contained in:
Masamichi Takagi
2018-09-03 15:09:15 +09:00
parent 52afbbbc98
commit 4438f994dc
97 changed files with 17368 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _ASYNC_PROGRESS_INCLUDED_
#define _ASYNC_PROGRESS_INCLUDED_
enum progress_state {
PROGRESS_INIT = 0,
PROGRESS_START,
PROGRESS_FINALIZE
};
void progress_init();
void progress_start();
void progress_stop();
void progress_finalize();
#endif