随笔分类 -  WindowsServerDev

programming on Windows Server Operation System
摘要:````C++ include include using namespace std; LARGE_INTEGER MilliSecondTimeStamp() { LARGE_INTEGER m_liPerfStart = { 0 }; QueryPerformanceCounter(&m_li 阅读全文
posted @ 2018-04-18 17:54 drfxiaoliuzi 阅读(466) 评论(0) 推荐(0)
摘要:When I run the Server application on Windows Server 2012 R2 operation system. I meet the error:MSVCP140D.dll is missing from your computer. Then I dow 阅读全文
posted @ 2018-01-17 19:21 drfxiaoliuzi 阅读(1849) 评论(0) 推荐(0)
摘要:标签(空格分隔): Windows multithread programming 多线程 并发 编程 背景知识 在开始学习多线程编程之前,先来学习下进程和线程 进程 进程是指具有一定独立功能的程序在某个数据集合上的一次运行活动,是系统进行资源分配和调度运行的一个基本单位。简单地说,进程是程序在计算 阅读全文
posted @ 2018-01-15 14:32 drfxiaoliuzi 阅读(5427) 评论(5) 推荐(1)