Must Be
发布时间:2016-05-11 10:51:04
ps -ef|grep xxx 得到进程或子进程ID号(8888)运行gdb(gdb)file /usr/xxx(gdb)attach 8888(gdb)b 函数名(gdb)c(gdb)detach......【阅读全文】
发布时间:2016-04-26 16:11:58
点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>struct list_data { int data; struct list_data *next;};.........【阅读全文】
发布时间:2016-04-22 10:52:46
操作系统:ubuntu10.04前言: 在开发中,经常需要使用到链表,因此参考linux内核的链表的实现。一,源码点击(此处)折叠或打开#ifndef __LIST_H__#define __LIST_H__#ifdef __cplusplusextern "C" {#en.........【阅读全文】
发布时间:2015-08-27 15:13:21
系统:Ubuntu 15.04按步骤来:1.确认安装python,我的版本为2.7.92.若要使用mysql,需安装MySQL-python包,安装之前确认已经安装了setuptools python setup.py build时若出现错误,基本上安装下python-dev和libmysqld-dev即可3.贴个代码,可访问mysql、解析json、so库调用点击(此处)折叠或打.........【阅读全文】