TSG-23335 TFE适配AArch64架构

This commit is contained in:
luwenpeng
2024-11-13 15:08:03 +08:00
parent 595167dcf8
commit 2e69e0edd8
18 changed files with 191 additions and 93 deletions

View File

@@ -43,13 +43,13 @@ enum _log_action
#define get_time_ms(tv) ((long long)(tv.tv_sec) * 1000 + (long long)(tv.tv_usec) / 1000)
#include "uuid_v4.h"
UUIDv4::UUIDGenerator<std::mt19937_64> uuidGenerator;
// #include "uuid_v4.h"
// UUIDv4::UUIDGenerator<std::mt19937_64> uuidGenerator;
void get_http_body_uuid(char *uuid)
{
UUIDv4::UUID uid = uuidGenerator.getUUID();
uid.str(uuid);
// UUIDv4::UUID uid = uuidGenerator.getUUID();
// uid.str(uuid);
return;
}