
Wince
文章平均质量分 81
C_peter
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IClass与电源管理(主菜)
IClass与电源管理一.PM中的相关内容说明1.结构体DEVICE_LIST首先看一下结构体DEVICE_LIST的定义:// this structure describes a set of power manageable devicestypedefstruct _DeviceList_tag { LPCGUID p转载 2014-08-11 15:22:10 · 1059 阅读 · 0 评论 -
WCE 电源管理器(开胃菜)
研究了将近一个月的 NDIS、RDIS以及电源管理器,分析了无数的源代码。赶快记一下,不然弄完其他模块,这部分又忘了。电源管理器的简单介绍网友已经写得很清楚了,感谢各位同仁。补存转载 2014-08-11 15:14:31 · 1515 阅读 · 0 评论 -
App and driver 电源管理器注册
电源注册过程:1、DevicePowerNotify Sends a request to the Power Manager about changing a power stateof a peripheral device.2、RequestPowerNotifications (注册电源管理器) Registers a m原创 2014-08-12 15:50:15 · 1223 阅读 · 0 评论 -
WCE Kernel Thread Schedule Source Code
//// Copyright (c) Microsoft Corporation. All rights reserved.////// Use of this source code is subject to the terms of the Microsoft shared// source or premium shared source license agreem原创 2015-03-09 17:20:59 · 1308 阅读 · 0 评论 -
WinCE线程调度
WinCE使用抢占式的基于优先级的时间片轮转调度算法调度线程。对于就绪队列中的线程,优先级高的先获得时间片运行,优先级相同时按时间片轮转,正在运行的线程用完时间片后无论是否执行完毕都得让出CPU退回就绪队列等待下一次时间片分配。WinCE优先级分256级(0~255)其中应用程序可使用248~255,其它的供驱动及内核使用。WinCE线程状态转换图WinCE转载 2015-03-09 17:18:25 · 1266 阅读 · 0 评论 -
About Fast Lock in the WCE kernel
What’s the Fast Lock ? The Fast Lock is a read/write lock in the WinCE kernel.Structure:struct _FAST_LOCK { PFAST_LOCK pPrevOwned; // Previous node in 2-D原创 2015-05-12 15:44:15 · 808 阅读 · 0 评论