现在网上不少教程,教人通过WMI -Win32_Processor - ProcessorId来获取CPU的“序列号”,典型代码如下: public static string GetCPUSerialNumber() { string cpuSer...
分类:
Windows程序 时间:
2014-10-13 16:55:59
阅读次数:
6805
A multi-processor, multi-cache system has filter pipes that store entries for request messages sent to a central coherency controller. The central coh...
分类:
系统相关 时间:
2014-10-12 23:44:38
阅读次数:
377
此组寄存器主要设置某个中断对应的目标处理器,即某个中断应该发往哪个处理器进行处理;和上一组优先级设置寄存器一样,本组寄存器同样是每个寄存器可以设置4个中断的目标处理器,每个中断有8个bit位可进行设置;此组寄存器的个数同样也由GICD_TYPER.ITLinesNumber决定,为(8*(GICD_TYPER.ITLinesNumber+1))个.
相对偏移区间为0x800-0xbf8;每个寄...
分类:
其他好文 时间:
2014-10-12 23:17:38
阅读次数:
430
.section .data
output:
.ascii "The processor Vendor ID is 'xxxxxxxxxxxx'\n"
.section .text
.globl _start
_start:
movl $0, %eax
cpuid
# 创建一个指针,处理内存中声明的 output 变量时会使用这个...
分类:
编程语言 时间:
2014-10-12 21:54:48
阅读次数:
240
类别计数器名称计数器描述SystemTotal Processor Time数据库进程占用的CPU时间。在不同的数据库中以不同的名称表示。例如,在oracle中,该计数器被称为cpu used by this sessionUser Connection当前的用户连接数。数据库服务器一般都有用...
分类:
数据库 时间:
2014-10-07 14:17:43
阅读次数:
194
判断CPU瓶颈1, %processor time 平均值大于952, processor queue length大于2 (大于处理器个数+1).可以确定CPU瓶颈3, CPU空闲时间为零(zero percent idle CPU)4, 过高的用户占用CPU时间(%User Time)5, 过高...
分类:
其他好文 时间:
2014-10-03 13:23:14
阅读次数:
171
1. uname -ayou will view kernel name、network node hostname、kernel release、kernel version、machine hardware name、processor type 、hardware platform、oper....
分类:
系统相关 时间:
2014-09-28 03:12:30
阅读次数:
295
进程间通信,简单来说就是进程与进程之间进行消息的传递。进程就是一个正在运行的程序实体。进程间通信主要分为两大类:管道和系统IPC(inter-processor communication,进程间通信)管道又分为三种:1)普通管道(有两个限制:第一,单工通信;第二,只能在父子或者兄弟进程间通信)2)...
分类:
其他好文 时间:
2014-09-27 15:18:39
阅读次数:
204
function ajaxRequest(url, params, processor, async) { url = url || ''; async = async || false; params = params || {}; var req = null; if (w...
分类:
其他好文 时间:
2014-09-27 09:32:19
阅读次数:
218
上来先问了一个系统设计的问题,一个front end, 一个back end。 front end有很多UI,一个UI对10个多customers,back end有许多processor,或者processor有多个进程、线程。问应该怎么设计这个并行分布运算的系统,才能让独立的任务得到优化。完全那...
分类:
其他好文 时间:
2014-09-24 14:22:36
阅读次数:
195