summaryrefslogtreecommitdiff
path: root/common/include
diff options
context:
space:
mode:
authorfengweihao <[email protected]>2024-10-12 11:20:39 +0800
committerfengweihao <[email protected]>2024-10-12 11:20:39 +0800
commitb7fb2d8a42edd813048eef616fc7edf9d53c65de (patch)
tree910d2179ee06ea736160a8e7ed940552893c8947 /common/include
parentc9ae13042d0e44f19e0d5cc64b70a409861c77af (diff)
Fix the scanning interface for UUID objects and adapt to changes in the APP_ID_DICT dictionary table.
Diffstat (limited to 'common/include')
-rw-r--r--common/include/tfe_resource.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/include/tfe_resource.h b/common/include/tfe_resource.h
index 91a42fa..a35e5cf 100644
--- a/common/include/tfe_resource.h
+++ b/common/include/tfe_resource.h
@@ -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;
};