约有 102 项符合查询结果, 以下是第 2 - 11项。
费时 < 1 秒。
至于''独立显卡也是用物理地址空间吗?''的问题。
虽然没有深入的玩过独立显卡,不过比如说
程序要从文件中读出一些纹理来渲染,当一部分独立显卡的显存拥有物理地址的话,就可以直接写到显存中了。
''集成显卡需要额外的物理地址空间吗?''也可以有。
比如说,一块内存它既有一个普通的CPU访问物理地址(总线上的地址),他还有另外一个虚拟的''物理地址'',当CPU用这个''虚拟的物理地址''访问内存的时候,这个访存请求会被翻译成实际的物理地址。
据个例子说明为什么要有这种需求。
不如说一块内存作为集成显卡的显存,里面放着一张图片。CPU当然可以根据内存在总线的实际物理地址访问这张图片。不过,如果显卡对于这张图片的布局作了优化,并且这个优化对于程序来说是透明的,那么程序根据位置(X, ...
Posted in Windows内核调试
by
Coding
on 2009-12-08
你还可以看看这篇文章http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx
Posted in Windows内核调试
by
Coding
on 2009-12-07
你是不是为了不影响程序运行,而只看输出?那么可以用debugview来看。
Posted in WinDbg
by
Coding
on 2009-12-04
http://microsoftpdc.com/Sessions/CL29
http://microsoftpdc.com/Sessions/P09-20
更多的pdc的videos在http://microsoftpdc.com/Videos
Posted in Windows内核
by
Coding
on 2009-11-27
搭车问一下,谁有这套视频。我知道看盗版是不地道的,不过实在是太贵了。。
http://www.solsem.com/videolibrary.html
Mark Russinovich和David Solomon的6DVD装的.
The Sysinternals Video Library (published by David Solomon Expert Seminars) is set of six DVDs that cover essential Windows troubleshooting topics
Posted in Windows内核
by
Coding
on 2009-11-23
您老太明智了,换到Windbg 6.8就好了
用Windbg 6.11就有问题。
Posted in Windows内核调试
by
Coding
on 2009-11-18
直接也发现了错误,这可能是什么问题?还有其他的flags需要开吗?
ReadMemory error for address eeddccee
Use `!address eeddccee' to check validity of the address.
0:000> !heap -p
Active GlobalFlag bits:
hpa - Place heap allocations at ends of pages
StackTraceDataBase @ 00420000 of size 01000000 with 00000024 traces
PageHeap enabled with ...
Posted in Windows内核调试
by
Coding
on 2009-11-18
WinXP SP3
如果同时用gflag.exe打开 +ust +hpa的话
ust - Create user mode stack trace databasehpa - Enable page heap
我发现好像ust没有用处,无法用!heap -p -a得到stack trace了
0:000> !gflagCurrent NtGlobalFlag contents: 0x02000000 hpa - Place heap allocations at ends of pages0:000> !heap -p -a 0x01638fd0ReadMemory error for address eeddcceeUse ...
Posted in Windows内核调试
by
Coding
on 2009-11-18