Fix the scanning interface for UUID objects and adapt to changes in the APP_ID_DICT dictionary table.

This commit is contained in:
fengweihao
2024-10-12 11:20:39 +08:00
parent c9ae13042d
commit b7fb2d8a42
4 changed files with 151 additions and 20 deletions

View File

@@ -1,5 +1,7 @@
#pragma once
#include <uuid/uuid.h>
enum category_type
{
CATEGORY_TYPE_UNKNOWN = 0,
@@ -17,7 +19,7 @@ struct app_id_dict
{
int ref_cnt;
int app_id;
int object_id;
uuid_t object_uuid;
pthread_mutex_t lock;
};