码迷,mamicode.com
首页 >  
搜索关键字:threads    ( 782个结果
win2003 + IIS6.0 + Php5.4(FastCGI)配置
说明:本文根据网络文章修改,非完全原创!一.提醒 先简要说下php在iis下运行的方式分ISAPI和FastCGI。从php.5.3.1版本开始,不再提供针对IIS安全线程运行方式(即不提供ISAPI运行php),只支持php的线程安全版本(FastCGI)。有关php的线程安全(threads.....
分类:Windows程序   时间:2014-11-02 01:53:01    阅读次数:273
Timer理解
Timer的官方描述是:A facility for threads to schedule tasks for future execution in a background thread. Tasks may be scheduled for one-time execution, or for repeated execution at regular intervals. 意思就是...
分类:其他好文   时间:2014-11-01 17:52:47    阅读次数:169
2.App Components-Processes and Threads
1. Processes and Threads When an application component starts and the application does not have any other components running, the Android system star....
分类:移动开发   时间:2014-10-31 20:38:36    阅读次数:249
[RK_2014_1026][C++_03]POSIX Threads
1.POSIX Threads, usually referred to as Pthreads, is a POSIX standard for threads. The standard, POSIX.1c, Threads extensions (IEEE Std 1003.1c-1995),...
分类:编程语言   时间:2014-10-26 21:02:56    阅读次数:149
linux下查看线程数的几种方法
1、cat /proc/${pid}/status2、pstree -p ${pid}3、top -p ${pid} 再按H 或者直接输入 top -bH -d 3 -p ${pid}top -H手册中说:-H : Threads toggle加上这个选项启动top,top一行显示一个线程。否则,....
分类:编程语言   时间:2014-10-24 20:34:13    阅读次数:203
linux下查看线程的命令
在linux中查看线程数的三种方法1、top -H手册中说:-H : Threads toggle加上这个选项启动top,top一行显示一个线程。否则,它一行显示一个进程。2、ps xH手册中说:H Show threads as if they were processes这样可以查看所有存在的线...
分类:编程语言   时间:2014-10-24 12:33:41    阅读次数:253
客户端、服务器端编程
首先是从main函数开发: int main(itn argc,char* argv[]) { pthread_t thread; int count; int status;         client_threads = CLIENT_THREADS; for(count = 0;count { status = pthread_create(&thread,NU...
分类:其他好文   时间:2014-10-21 21:36:55    阅读次数:297
State Threads——异步回调的线性实现
State Threads——异步回调的线性实现原文链接:http://coolshell.cn/articles/12012.html本文的标题看起来有点拗口,其实State Threads库就是在单线程中使用同步编程思想来实现异步的处理流程,从而实现单线程能并发处理成百上千个请求,而且每个请求的...
分类:其他好文   时间:2014-10-16 03:30:11    阅读次数:599
谈谈java中的线程(初级概念)
定义 关于进程与线程的定义 可参看一下这个介绍 http://www.ruanyifeng.com/blog/2013/04/processes_and_threads.html 在不细抠定义的情况下 我们可以认为 在操作系统里一个任务就是一个进程 像word,qq都可以看做一个进程. 另一方面如果这个进程内部的函数调用 就是一条线 那它就是单线程 如果有多条线 那就是多线程 而在这个...
分类:编程语言   时间:2014-10-15 16:13:41    阅读次数:246
Delphi thread exception mechanism
http://www.techques.com/question/1-3627743/Delphi-thread-exception-mechanismi have a dilema on how threads work in delphi, and why at a moment when a ...
分类:Windows程序   时间:2014-10-10 19:14:44    阅读次数:303
782条   上一页 1 ... 69 70 71 72 73 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!