3090|1

64

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

wince6.0 MDOC 驱动出现堆栈溢出 [复制链接]

有没有哪位大哥用 PXA270 + WINCE6.0 + MDOC 啊?
现在我把 WINCE6。0 打补丁到 081231(08年底的升级包) 后,
出现堆栈溢出,跟踪代码后发先是在读 FLASH 的时候,处理内存上出现的
请高手指教。

#define MAP_PTR(ptr, len) ptr
#define MAP_EMBEDDED_PTR(returnPtr, callerPtr, len, bRead) \
           (SUCCEEDED(CeOpenCallerBuffer((PVOID*)&returnPtr, callerPtr, len, bRead ? ARG_O_PTR : ARG_I_PTR, FALSE)))
#define UNMAP_EMBEDDED_PTR(returnPtr, callerPtr, len, bRead) \
        CeCloseCallerBuffer ((PVOID*)&returnPtr, callerPtr, len, bRead ? ARG_O_PTR : ARG_I_PTR)



if(Opcode == IOCTL_DISK_READ || Opcode == DISK_IOCTL_READ)
                {
                        if (!MAP_EMBEDDED_PTR(realBuf, ptrSG->sr_sglist[curSG].sb_buf,
                                                ptrSG->sr_sglist[curSG].sb_len, TRUE))
                        {
                                DBGMSG(ZONE_RDWR | ZONE_ERROR, (TEXT("TrueFFS(TRUE), doDiskIo(): Mapping embedded pointer failed(realBuf=0x%x).\r\n"), realBuf));
                                ptrSG->sr_status = ERROR_INSUFFICIENT_BUFFER;
                                return ptrSG->sr_status;
                        }

                        /* Complete leftovers from previous iteration, if needed */
                        if (dwIntermediatIndex < FL_SECTOR_SIZE)
                        {
                                copyBytes(realBuf, &intermediateBuf[dwIntermediatIndex], dwBytesToUse);
                                dwIntermediatIndex += dwBytesToUse;
                                if (dwIntermediatIndex < FL_SECTOR_SIZE)
                                {
                                        /* The buffer was smamller then sector, advance to next buffer */
                                        continue;
                                }
                                /* Intermediate sector reading is complete */
                                dwSectorsUsed++;
                            ReleaseMutex (pDisk->globalMutex);
                        }
                       
                        /* Read continuous sectors if possible */
                        if (dwNumOfSect)
                        {
                                status = ReadSectors(pDisk, ptrSG, &realBuf[dwBytesToUse],
                                        ptrSG->sr_start+dwSectorsUsed, dwNumOfSect, pBytesReturned);
                                if (status==flReadFault)
                                        return ptrSG->sr_status;
                        }
                       
                        /* Read from sector to a non-complete S/G buffer if needed */
                        if (dwLeftOverBytes)
                        {
                                /* Start using Intermediate buffer, lock */
                                WaitForSingleObject(pDisk->globalMutex,INFINITE);
                                status = ReadSectors(pDisk, ptrSG, intermediateBuf,
                                        ptrSG->sr_start+dwNumOfSect+dwSectorsUsed, 1, pBytesReturned);
                                if (status==flReadFault)
                                {
                                    ReleaseMutex (pDisk->globalMutex);
                                        return ptrSG->sr_status;
                                }
                               
                                realBuf = &realBuf[dwBytesToUse+dwNumOfSect*FL_SECTOR_SIZE];
                                copyBytes(realBuf, intermediateBuf, dwLeftOverBytes);
                                dwIntermediatIndex = dwLeftOverBytes;
                        }
                           //CeCloseCallerBuffer 当执行了下面这个函数后,系统就出现堆栈溢出了
                        UNMAP_EMBEDDED_PTR(realBuf, ptrSG->sr_sglist[curSG].sb_buf,
                                ptrSG->sr_sglist[curSG].sb_len, TRUE);
                }
此帖出自WindowsCE论坛

最新回复

怎么没人帮忙啊“???  详情 回复 发表于 2009-11-18 13:55
点赞 关注
 

回复
举报

68

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
怎么没人帮忙啊“???
此帖出自WindowsCE论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表