1、线程的基本概念、线程的基本状态以及状态之间的关系...
分类:
编程语言 时间:
2014-07-24 10:39:04
阅读次数:
346
#Red hat enterprise linux variants ##Two install sets available ##两种安装方案 ###Server rhel server rhea advanced platform ###Desktop rhel desktop workstation option Multi-OS option ##RH network #...
分类:
Web程序 时间:
2014-07-23 21:33:26
阅读次数:
283
需要准备的软件:ubuntu 14.04 http://10.251.3.210/files/4024000000140B77/ftp-srv2.kddilabs.jp/Linux/packages/ubuntu/releases-cd/14.04/ubuntu-14.04-desktop-amd6...
分类:
其他好文 时间:
2014-07-23 16:30:01
阅读次数:
322
想必玩过mysql的人对Waiting for table metadata lock肯定不会陌生,一般都是进行alter操作时被堵住了,导致了我们在show processlist 时,看到线程的状态是在等metadata lock。本文会对mysql 的metadata lock做一个小小的总结...
分类:
数据库 时间:
2014-07-23 14:46:26
阅读次数:
211
1.互斥量(QMutex)
头文件声明: #include
互斥量声明: QMutex m_Mutex;
互斥量加锁: m_Mutex.lock();
互斥量解锁: m_Mutex.unlock();
2.等待条件(QWaitCondition)
头文件声明: #inc...
分类:
其他好文 时间:
2014-07-23 13:20:44
阅读次数:
489
一.ubuntu12.04lts安装 (lts=long term support长期支持)1.在电脑上分出100G的未分配空间(xp:删除逻辑分区,win7:压缩...)2.下载ubuntu系统的镜像文件,如:ubuntu-12.04.4-desktop-i386.ios3.将镜像文件做成启动盘,...
分类:
其他好文 时间:
2014-07-23 12:14:56
阅读次数:
399
官网FAQ里查到以下说明:“You may find that not all of these icons are used on your system. This is because the number of overlays allowed by Windows is limited.....
分类:
其他好文 时间:
2014-07-22 22:35:16
阅读次数:
600
package多线程;
importjava.util.concurrent.locks.Condition;
importjava.util.concurrent.locks.Lock;
importjava.util.concurrent.locks.ReentrantLock;
publicclassPandCnewLock{
publicstaticvoidmain(String[]args){
// Producerp=newProducer2();
// Consumerc=..
分类:
编程语言 时间:
2014-07-22 18:21:02
阅读次数:
288
mysql-uroot-e"showprocesslist"|grep-i"Locked">>locklist.txt;
forlineinawk‘{print$1}‘locklist.txt
do
echo"kill$line;">>lock_kill.sql
done查看mysql数据库表大小#!/bin/bash
database=cms
user=root
password=‘123456‘
mysql-u${user}-p${password}-e"use$d..
分类:
数据库 时间:
2014-07-22 18:15:42
阅读次数:
334
1.[root@desktop huage]# : > filename
:是一个占位符,不会产生任何输入
2.[root@desktop huage]# > filename
同样不会产生任何输出
3.[root@desktop huage]# echo "" > filename
会看到一行空行,文件大小是1byte
4.[root@desktop huage]#...
分类:
系统相关 时间:
2014-07-22 14:26:36
阅读次数:
203