XMPP/Smack/Openfire javax.net.ssl.SSLException:
Received fatal alert:
internal_error解决:1、在链接openfire服务器后,线程休眠一段时间,再进行登录login操作。connection.connect();Th...
分类:
其他好文 时间:
2014-05-10 19:39:25
阅读次数:
349
在gdb调试时segmentation fault问题时,遇到下面的了问题:Program
received signal SIGABRT, Aborted.0x00007ffff73eb925 in raise (sig=6) at
../nptl/sysdeps/unix/sysv/linux/...
分类:
数据库 时间:
2014-05-09 11:40:36
阅读次数:
422
我们知道INTC根据128个system event的输入,然后输出下面的信号到INTC所在corePac的CPU:
? One maskable, hardware exception (EXCEP)
? Twelve maskable hardware interrupts (INT4 through INT15)
? One non-maskable signal that you c...
分类:
其他好文 时间:
2014-05-08 16:03:55
阅读次数:
447
exit.c 代码分析笔记
release
释放进程的函数release() 主要根据指定进程的任务数据结构指针,在任务数组中删除指定的进程指针,释放相关内存页,并立刻让内核重新调度进程的运行。
void release(struct task_struct * p) //释放p指向的进程
{
int i;
if (!p) //常规检测...
分类:
系统相关 时间:
2014-05-07 23:35:51
阅读次数:
576
Fatal error: Maximum execution time of 30
seconds exceeded inC:\Program Files\Apache Software
Foundation\Apache2.2\htdocs\code\curl\work\work3.phpon l...
分类:
其他好文 时间:
2014-05-07 16:53:31
阅读次数:
338
signal.c 代码分析笔记
int sys_sgetmask()// 获取当前进程阻塞的信号
{
returncurrent->blocked;
}
int sys_ssetmask(int newmask) //设置当前进程阻塞信号,确保SIGKILL 和SIGSTOP不被阻塞
{
int old=current->...
分类:
系统相关 时间:
2014-05-07 12:25:12
阅读次数:
486
I make a connection through SSH and then I type:
# x0vncserver --PasswordFile=/home/hello/.vnc/passwd
x0vncserver: unable to open display ""
~ImageCleanup called
the reason is :
...
分类:
其他好文 时间:
2014-05-07 04:23:43
阅读次数:
581
vs2010出现fatal error LNK1123 转换到 COFF 期间失败...
分类:
其他好文 时间:
2014-05-04 18:16:49
阅读次数:
275
直接转换的时候遇到两个问题:
1、预编译头文件*.PCH找不到
2、static_cast”: 无法从“void (__thiscall CView2::* )(void)”转换为“LRESULT (__thiscall CWnd::*
1、来源:http://www.zhuyanfeng.com/archives/2231
错误:
fatal error C1083: 无法打开...
分类:
编程语言 时间:
2014-05-03 21:56:12
阅读次数:
415
一,简介
Signal 是微软支持的一个运行在 Dot NET 平台上的 html websocket 框架。它出现的主要目的是实现服务器主动推送(Push)消息到客户端页面,这样客户端就不必重新发送请求或使用轮询技术来获取消息。
可访问其官方网站:https://github.com/SignalR/ 获取更多资讯。...
分类:
Web程序 时间:
2014-05-03 21:43:00
阅读次数:
411