大约有 2,000 项符合查询结果(耗时:0.0093秒) [XML]

https://www.tsingfun.com/it/os_kernel/658.html 

手握利器,直面“蓝脸”! ——使用WinDbg抗击系统崩溃 - 操作系统(内核) - ...

...ows自己执行崩溃函数“KeBugCheckEx”。该函数接受一个停止代码(STOP Code,也称为错误检查码“Bug Check Code”),以及四个根据停止代码来解释的参数(下文中会有图例)。在调用KeBugCheckEx之后,首先该系统所有处理器上的所有中断将...
https://www.tsingfun.com/it/cp... 

C++ Lock-free Hazard Pointer(冒险指针) - C/C++ - 清泛网 - 专注C/C++及内核技术

...的场景。其论文可参考文献 1,标准草案可参考文献 2,代码实现可参考 Folly 中的 HazPtr。 2. Hazard Pointer 首先回忆下引用计数的做法: #include <atomic> #include <memory> template <class T> class ReferenceCount { public: ReferenceCount(std::uni...
https://www.tsingfun.com/it/tech/652.html 

CDN(内容分发网络)技术原理 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...际配置,更深刻理解CDN的具体工作过程。 Linux 是开放源代码的免费操作系统,已经成功应用于许多关键领域。Bind是Unix/FreeBSD/Linux等类Unix平台上非常有名DNS服务程序,Internet上超过60%的DNS运行的是bind。Bind的最新版本是9.x,用...
https://www.tsingfun.com/it/cpp/1234.html 

Excel RTD(Excel Real-Time Data)实时刷新数据技术 - C/C++ - 清泛网 - 专注C/C++及内核技术

...tData.cs中被使用。为了图简便,我就贴出MarketData.cs的全部代码。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.Configuration; using System.Timers; using System.Runtime.InteropServices; usi...
https://www.tsingfun.com/it/cpp/1300.html 

Win32 创建控件风格不是Win XP的解决方案 - C/C++ - 清泛网 - 专注C/C++及内核技术

...MANIFEST "TestCtrlStyle.manifest" 注意,有时候,加这样一句代码在资源文件中,链接时会出错: 1>Linking... 1>CVTRES : fatal error CVT1100: duplicate resource. type:MANIFEST, name:1, language:0x0409 1>LINK : fatal error LNK1123: failure during conve...
https://www.tsingfun.com/it/cpp/2034.html 

Linux编程中各种头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

...建议:在编写网络程序时,可以直接使用下面这段头文件代码 #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <errno.h> #include <malloc.h> #in...
https://www.tsingfun.com/it/cpp/2040.html 

error C2780: \'void __cdecl std::sort(_RI,_RI,_Pr)\' : expects 3 argum...

...be 'class std::reverse_iterator<int *,int,int &,int *,int>' or 'int *' 代码如下: #include <iostream> #include <algorithm> #include <vector> using namespace std; void main() { vector<int> ivec1(10,1); sort(ivec1.begin(), ivec1.rend());//类型不匹配...
https://www.tsingfun.com/it/cpp/2096.html 

error C2664: “std::list::list(const std::allocator &)”: 不能将参数 1...

...的用户定义的转换运算符,或者无法调用该运算符 出错代码: #include <iostream> #include <vector> #include <list> using std::vector; using std::list; using std::cout; //容器初始化举例 int main() { vector<int> ivec;//使用默认构造函数 vector<int>...
https://www.tsingfun.com/it/da... 

MySQL一次主从数据不一致的问题解决过程 - 数据(内核) - 清泛网 - 专注C/...

...个机器都迁移了,然后今天才把主动重新连接上,但是从的偏移量是从今天当前时刻开始的,也就是说虽然现在主...情况时这样的: 昨天晚上主动2个机器都迁移了,然后今天才把主动重新连接上,但是从的偏移量是从今天...
https://www.tsingfun.com/it/cpp/1404.html 

什么是STL?c++标准和STL的关系 - C/C++ - 清泛网 - 专注C/C++及内核技术

什么是STL?c++标准和STL的关系标准模板(英文:Standard Template Library)缩写STL,是C++标准程序的一部分。其中包含4个组件,分别为算法、容器、函数、迭代器。...标准模板(英文:Standard Template Library) 缩写 STL,是C++标准...