aspnetwuxueyou
码龄19年
  • 13,088
    被访问
  • 7
    原创
  • 1,250,691
    排名
  • 28
    粉丝
  • 0
    铁粉
关注
提问 私信
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:上海市
  • 加入CSDN时间: 2003-07-07
博客简介:

aspnetwuxueyou的专栏

查看详细资料
  • 0
    领奖
    总分 0 当月 0
个人成就
  • 获得0次点赞
  • 内容获得4次评论
  • 获得0次收藏
创作历程
  • 6篇
    2007年
  • 2篇
    2006年
  • 2篇
    2004年
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

Stack frame omission (FPO) optimization part2

Frame pointer omission (FPO) optimization and consequences when debugging, part 2This series is about frame pointer omission (FPO) optimization and how it impacts the debugging experience.
原创
发布博客 2007.05.25 ·
1041 阅读 ·
0 点赞 ·
0 评论

Stack frame omission (FPO) optimization part1

Stack frame omission (FPO) optimization and consequences when debugging, part 1During the course of debugging programs, you’ve probably ran into the term “FPO” once or twice. FPO refers to a speci
转载
发布博客 2007.05.25 ·
1105 阅读 ·
0 点赞 ·
1 评论

Security check diff between Everett and Whidbey

Security _Checks in EverettFunction prolog:sub esp, 24hmov eax, dword ptr =>[security_cookie (408040h)]mov dword ptr[esp+20h], eaxAttacks Everett couldnt preventAttacks using parameters
原创
发布博客 2007.05.25 ·
730 阅读 ·
0 点赞 ·
1 评论

OpenMP support in Whidbey

Among those in the parallel computation field, a common joke is "Parallel computing is the wave of the future…and always will be." This little joke has held true for decades. A similar sentiment was
原创
发布博客 2007.05.25 ·
904 阅读 ·
0 点赞 ·
1 评论

How VS support non-compile-browsing

If youre wondering where Stan Lippman is, were happy to report that he has graciously granted us the use of his column this month to talk about some of the recent work the Visual C++ team has be
转载
发布博客 2007.05.25 ·
668 阅读 ·
0 点赞 ·
0 评论

Call stack and stack frame

Call stackJump to: navigation, searchIn computer science, a call stack is a special stack which stores information about the active subroutines of a computer program. (The active subroutines a
转载
发布博客 2007.05.25 ·
1191 阅读 ·
0 点赞 ·
0 评论

关于TCP的CLOSE_WAIT

最近有朋友问是不是CLOSE_WAIT状态只出现在客户端,仅连接被动关闭的时候才出现。事实上,CLOSE_WAIT既可以出现在客户端,也可以出现在服务器端。比如,A和B连接,我们不管哪一方是服务器,哪一方是客户端如果A调用closesocket,这时它会发送一个FIN到B,B的TCP协议栈会返回一个ACK(应用程序不需要做什么ACK就自动返回了)。这个时候A处于FIN_WAIT_2,B
原创
发布博客 2006.11.17 ·
1520 阅读 ·
0 点赞 ·
0 评论

Debugging COM server (.EXE Server and Active Document)

 Starting to debug the out of prcocess server application is a three-step process Start debugging the server as a normal application. Set breakpoints as desired. Start the container
原创
发布博客 2006.09.15 ·
784 阅读 ·
0 点赞 ·
0 评论

句柄

我举例来说明一下句柄是什么比如说HGDIOBJ1. 结构:它是一个32的数值,它的结构是:8bits unknown | 1 bit stock object marker |7 bits object type| 4 bits unused| 12 bits index. 看到12bits的索引了吗?2. object handle table.我们刚才看到了索引,索引是指向哪里的呢,就是指向这
原创
发布博客 2004.07.31 ·
830 阅读 ·
0 点赞 ·
0 评论

stack frame

最近有朋友问stack frame是什么。 我整理了一下,供大家参考。 Stack frame is created by prolog assembly code,and its a an area of memory that temporarily holds the arguments to the function as well as any variables that are d
原创
发布博客 2004.07.31 ·
1164 阅读 ·
0 点赞 ·
1 评论