码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
Peterson和多线程版本
Peterson's algorithm (AKA Peterson's solution) is a concurrent programming algorithm for mutual exclusion that allows two processes to share a single-use resource without conflict, using only shar...
分类:编程语言   时间:2014-06-25 19:38:19    阅读次数:748
Oracle backgroup processes
PMON: Process Monitor 用自动注册动态监听,处理异常进程。 SMON: System Monitor 用于instance recovery。 LCKn:仅使用于RAC数据库,用于instance之间的封锁。 RECO:用于分布式数据库的恢复,全称是Distributed Database Recovery。 CKPT: Check Point 由ORACLE的FAST...
分类:数据库   时间:2014-06-22 12:22:00    阅读次数:232
oracle连接进程数设置
SQL> select count(*) from v$session #连接数SQL> Select count(*) from v$session where status='ACTIVE' #并发连接数SQL> show parameter processes #最大连接 process:.....
分类:数据库   时间:2014-06-18 20:28:17    阅读次数:289
Nginx配置文件nginx.conf中文详解(转载)
请参考:http://wiki.nginx.org/Main#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | e...
分类:其他好文   时间:2014-06-18 14:15:20    阅读次数:211
UML的基础元件之架构元件(三)
Structural Things An active class is a class whose objects own one or more processes or threads and therefore can initiate control activity. An active class is just like a class except that it...
分类:其他好文   时间:2014-06-17 22:44:27    阅读次数:310
进程与线程的一个简单解释
转:http://www.ruanyifeng.com/blog/2013/04/processes_and_threads.html进程(process)和线程(thread)是操作系统的基本概念,但是它们比较抽象,不容易掌握。最近,我读到一篇材料,发现有一个很好的类比,可以把它们解释地清晰易懂。...
分类:编程语言   时间:2014-06-13 17:51:36    阅读次数:274
Windows操作系统架构
用户态用户态有四类组件,这四类组件都是以进程形式存在的,也就是说,它们都有自己的进程地址空间(其实就是一套页表)。1. System Support Processes这些是固化的进程,也就是说是操作系统结合在一起的进程。比如logon process(winlogon.exe),Session m...
分类:Windows程序   时间:2014-06-12 11:31:18    阅读次数:466
pgm终
这里罗列一些看完此书后遗留的问题:常用 model 通过 BP/LBP 重新审视 inference 部分Lauritzen algorithm/Lauritzen-Spiegelhalter algorithmturbo codec 与 LBPGaussian processes 与 Gaussi...
分类:其他好文   时间:2014-06-08 22:51:21    阅读次数:329
[Other]面试复习笔记:线程与进程复习
基本概念1. 进程的基本概念线程(thread)是进程(processes)中某个单一顺序的控制流,也被称为轻量进程(lightweight processes)。进程是表示资源分配的基本单位,又是调度运行的基本单位。 例如: 用户运行自己的程序,系统就创建一个进程,并为它分配资源,包括各种表格、内存空间、磁盘空间、I/O设备等。 然后,把该进程放人进程的就绪队列。进程调度程序选中它,为它分配CP...
分类:编程语言   时间:2014-06-08 17:59:31    阅读次数:218
1265条   上一页 1 ... 123 124 125 126 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!