Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
内核对象
官网文档上的enum rt_object_class_type和代码不一样呢?
发布于 2023-03-31 08:58:21 浏览:275
订阅该版
文档里是这样 ```c enum rt_object_class_type { RT_Object_Class_Thread = 0, /* 对象为线程类型 */ #ifdef RT_USING_SEMAPHORE RT_Object_Class_Semaphore, /* 对象为信号量类型 */ #endif #ifdef RT_USING_MUTEX RT_Object_Class_Mutex, /* 对象为互斥量类型 */ #endif #ifdef RT_USING_EVENT RT_Object_Class_Event, /* 对象为事件类型 */ #endif #ifdef RT_USING_MAILBOX RT_Object_Class_MailBox, /* 对象为邮箱类型 */ #endif #ifdef RT_USING_MESSAGEQUEUE RT_Object_Class_MessageQueue, /* 对象为消息队列类型 */ #endif #ifdef RT_USING_MEMPOOL RT_Object_Class_MemPool, /* 对象为内存池类型 */ #endif #ifdef RT_USING_DEVICE RT_Object_Class_Device, /* 对象为设备类型 */ #endif RT_Object_Class_Timer, /* 对象为定时器类型 */ #ifdef RT_USING_MODULE RT_Object_Class_Module, /* 对象为模块 */ #endif RT_Object_Class_Unknown, /* 对象类型未知 */ RT_Object_Class_Static = 0x80 /* 对象为静态对象 */ }; ``` 代码里是这样 ```c enum rt_object_class_type { RT_Object_Class_Null = 0x00, /**< The object is not used. */ RT_Object_Class_Thread = 0x01, /**< The object is a thread. */ RT_Object_Class_Semaphore = 0x02, /**< The object is a semaphore. */ RT_Object_Class_Mutex = 0x03, /**< The object is a mutex. */ RT_Object_Class_Event = 0x04, /**< The object is a event. */ RT_Object_Class_MailBox = 0x05, /**< The object is a mail box. */ RT_Object_Class_MessageQueue = 0x06, /**< The object is a message queue. */ RT_Object_Class_MemHeap = 0x07, /**< The object is a memory heap. */ RT_Object_Class_MemPool = 0x08, /**< The object is a memory pool. */ RT_Object_Class_Device = 0x09, /**< The object is a device. */ RT_Object_Class_Timer = 0x0a, /**< The object is a timer. */ RT_Object_Class_Module = 0x0b, /**< The object is a module. */ RT_Object_Class_Memory = 0x0c, /**< The object is a memory. */ RT_Object_Class_Unknown = 0x0e, /**< The object is unknown. */ RT_Object_Class_Static = 0x80 /**< The object is a static object. */ }; ``` 数据变了,也没有宏定义了。 官网文档有文字 >从上面的类型说明,我们可以看出,如果是静态对象,那么对象类型的最高位将是 1(是 RT_Object_Class_Static 与其他对象类型的与操作),否则就是动态对象,系统最多能够容纳的对象类别数目是 127 个。 但是实际代码里 Parent里的type,信号量是0x82 设备是0x89 动态创建的线程 type是0x01 静态创建的线程,type是0x81 静态创建的消息队列,type是0x86 应该是按位或啊。 文档错了的话更新一下,我错了的话纠正我。 还有一个问题 ```c struct rt_object { char name[RT_NAME_MAX]; /**< name of kernel object */ rt_uint8_t type; /**< type of kernel object */ rt_uint8_t flag; /**< flag of kernel object */ #ifdef RT_USING_MODULE void *module_id; /**< id of application module */ #endif rt_list_t list; /**< list node of kernel object */ }; ``` 这个object里的type和上面的rt_object_class_type是一个东西吗?那为什么这里不用枚举类型呢。 谢谢
查看更多
宇宙码蚁
2023-03-31
接口与实现分离
1.谁错了 是代码改了,文档没改 具体是在2017年平安夜的时间改的 https://github.com/RT-Thread/rt-thread/commit/8ff8436fcde1d525cea6719b1f16cd29bc22c617 2.是一个东西吗 在object.c中 `rt_object_allocate`函数中有 `object->type = type;` `rt_object_init`函数中有`object->type = type | RT_Object_Class_Static;` 所以是一个东西 3.为什么不用枚举类型 可能是为了节约内存,枚举类型大小是一个机器字,32位系统就是4个字节
2
个回答
默认排序
按发布时间排序
aozima
2023-03-31
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
>为什么这里不用枚举类型的呢 可能是因为枚举类型的长度不确定
撰写答案
登录
注册新账号
关注者
0
被浏览
275
关于作者
伊森亨特
这家伙很懒,什么也没写!
提问
77
回答
31
被采纳
0
关注TA
发私信
相关问题
1
rt thread入门到内核学习记录
2
RT-Thread中内核对象“thread”继承方式与其它的不同
3
rt_thread 结构定义问题?
4
rt_object_get_information获取到的链表为空
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
a1012112796
13
个答案
1
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部