uint64_t tmp = SysTimer_GetLoadValue();
do {
start_mtime = SysTimer_GetLoadValue();
} while (start_mtime == tmp);
请问为什么在读取当前计数值时要这样操作呀?这样做有什么好处吗?