CSDN专家博客精华版

为人民服务!
  首页  :: 新随笔  :: 管理
上一页 1 ··· 491 492 493 494 495 496 497 498 499 ··· 521 下一页

2007年12月17日

摘要: WPF/E是微软下一代Web平台的核心技术,跨平台(支持Windows和Mac),可以在多种浏览器中运行,会自动下载一个很小只有数M的客户端来运行WPF/E代码:WPF/E简介:http://msdn2.microsoft.com/en-us/library/bb190634.aspxWPF/E入门教程:http://www.microsoft.com/china/MSDN/library/W... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(84) 评论(0) 推荐(0)

摘要: Process Control1 Process Identifiers1. PID=0一般是调度进程,又称为swapper2. PID=1一般是init进程,在引导过程之后启动,负责启动整个UNIX系统,所有Orphaned子进程都会自动成为init的子进程3. PID=2一般是页面守护进程,负责将虚拟内存的换页4. 下面函数被用来获得pid: ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(140) 评论(0) 推荐(0)

摘要: Itanium C++ ABI: Exception Handling ($Revision: 1.22 $) Contents Introduction Definitions Base Documents Open Issues --> Level I: Base ABI ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(154) 评论(0) 推荐(0)

摘要: For instructions on how to build libunwind, see the README file in the libunwind source tree. Some notes illustrating the use of libunwind can be found in the file doc/NOTES. Manual Pages libunwi... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(256) 评论(0) 推荐(0)

摘要: Itanium C++ ABI: Exception Handling ($Revision: 1.22 $) Contents Introduction Definitions Base Documents Open Issues --> Level I: Base ABI 1.... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(169) 评论(0) 推荐(0)

摘要: 9 Process Relationships1 Process Groups1. 每个进程属于一个Process Group,这个process Group从同样的Terminal获得Signal2. Getpgrp可以获得process Group ID,也用pid_t结构表示: #include ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(101) 评论(0) 推荐(0)

摘要: ADO对象ConnectionCommandRecordSetRecordStreamServer.CreateObject("Scripting.FileSystemObject")Server.CreateObject("Scripting.Dictionary") HashTableServer.CreateXObject("Word.Application") //Serve... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(323) 评论(0) 推荐(0)

摘要: 使用网上比较普遍的vb中使用WindowsAPI实现打开文件对话框代码,Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _ "GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long Type OPENFILENAME lStructSize A... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(508) 评论(0) 推荐(0)

摘要: Process Environment1 Process Termination进程的终止有些下面的方法:1. 从main函数return2. 调用exit:exit属于ISO C标准中定义的函数,会执行清理工作。包括关闭IO库中所有打开的文件流(这会导致所有的文件buffer都被flush),还会调用阿texit所注册的退出函数。Exit还会。等价于return (0)3. ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(82) 评论(0) 推荐(0)

摘要: 我在上篇文章举了一个简单的C++程序非常简略的解释C++代码和汇编代码的对应关系,在后面的文章中我将按照不同的Topic来仔细介绍更多相关的细节。虽然我很想一开始的时候就开始直接介绍C++和汇编代码的对应关系,不过由于VC编译器会在代码中插入各种检查,SEH,C++异常等代码,因此我觉得有必要先写一下一些在阅读VC生成的汇编代码的时候常见的一些东西,然后再开始具体的分析C++代码的反汇编。这篇... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(211) 评论(0) 推荐(0)

上一页 1 ··· 491 492 493 494 495 496 497 498 499 ··· 521 下一页