我在下面尝试过以毫秒为单位获取日期的系统时间。 它在Linux平台上运行良好,但无法在VXworks上运行。我需要类似的vxworks解决方案。
#include <sys/time.h> /* It seems this is not available on vxworks */
#include <iostream>
using namespace std;
int main()
{
struct timeval tp;
gettimeofday(&tp, NULL);
unsigned long int ms = tp.tv_sec * 1000 + tp.tv_usec / 1000;
cout<<ms
return 0;
}