码迷,mamicode.com
首页 >  
搜索关键字:threads    ( 782个结果
pthread_exit
pthread_exit:By having main() explicitly callpthread_exit()as the last thing it does, main() will block and be kept alive to support the threads it cr...
分类:其他好文   时间:2014-08-22 12:31:06    阅读次数:149
[Java Basics] multi-threading
1, InterruptInterruption in Java is not pre-emptive. Put another way both threads have to cooperate in order to process the interrupt properly. If the...
分类:编程语言   时间:2014-08-19 23:46:45    阅读次数:235
使用gdb调试多线程程序总结
转:使用gdb调试多线程程序总结 一直对GDB多线程调试接触不多,最近因为工作有了一些接触,简单作点记录吧。 先介绍一下GDB多线程调试的基本命令。 info threads 显示当前可调试的所有线程,每个线程会有一个GDB为其分配的ID,后面操作线程的时候会用到这个ID。 前面有*的是当前调试的....
分类:数据库   时间:2014-08-18 10:35:23    阅读次数:288
Qt编程之实现在QFileDialog上添加自定义的widget
上网搜索找到的方法如下:http://www.qtforum.org/article/20841/how-to-add-a-qwidget-in-qfiledialog.html#post78422http://www.qtcentre.org/threads/42858-Creating-a-Cu...
分类:其他好文   时间:2014-08-15 12:16:28    阅读次数:1112
linux线程库
linux 提供两个线程库,Linux Threads 和新的原生的POSIX线程库(NPTL),linux threads在某些情况下仍然使用,但现在的发行版已经切换到NPTL,并且大部分应用已经不在加载linux threads,NPTL更轻量,更高效,也会有那些linux threads遇到的...
分类:编程语言   时间:2014-08-15 07:11:07    阅读次数:222
C++11多线程教学(一)
本篇教学代码可在GitHub获得:https://github.com/sol-prog/threads。在之前的教学中,我展示了一些最新进的C++11语言内容:1.正则表达式(http://solarianprogrammer.com/2011/10/12/cpp-11-regex-tutoria...
分类:编程语言   时间:2014-08-13 01:02:44    阅读次数:279
JUC——Exchanger
A synchronization point at which threads can pair and swap elements within pairs. Each thread presents some object on entry to the exchange method, matches with a partner thread, and receives its par...
分类:其他好文   时间:2014-08-11 17:57:12    阅读次数:303
Parallel Processing and Concurrency in the .NET Framework
http://msdn.microsoft.com/en-us/library/hh156548(v=vs.110).aspxThe .NET Framework provides several ways for you to use multiple threads of execution t...
分类:Web程序   时间:2014-08-06 18:44:02    阅读次数:364
WINDBUG常用命令
1. !threadpool 查看当前CPU状况 线程数等等2.!runaway 查看那几个线程使用的高 建议多抓几个dump 然后确定到底是哪个线程3. ~线程IDs 跳转到那个线程4.!threads查看所有线程。5. (3后)!clrstack 看看这个线程再干嘛 执行那些方法6.!clrst...
分类:数据库   时间:2014-08-04 17:09:47    阅读次数:443
Qt编程之转换成8,16bit的灰度图
其实我目前还没有实现。references:http://qt-project.org/faq/answer/how_can_i_convert_a_colored_qpixmap_into_a_grayscaled_qpixmaphttp://www.qtcentre.org/threads/46...
分类:其他好文   时间:2014-08-04 13:53:57    阅读次数:632
782条   上一页 1 ... 72 73 74 75 76 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!