SystemTap脚本主要是由探测点和探测点处理函数组成的,来看下都有哪些探测点可用。
The essential idea behind a systemtap script is to name events, and to give them handlers.
Systemtap works by translating the script to C, running the system C compiler to create a kernel module from that.
When t...
分类:
其他好文 时间:
2014-06-07 01:59:08
阅读次数:
369
ld: library not found for -lxxxxxxxx
clang: error: linker command failed with exit code 1 (use -v to see invocation)...
分类:
其他好文 时间:
2014-06-05 12:42:28
阅读次数:
386
把横的和竖的分开考虑
//#pragma comment(linker, "/STACK:102400000,102400000")
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace...
分类:
其他好文 时间:
2014-06-05 06:04:58
阅读次数:
238
区间的查询,点修改,插入和删除。先姑且当作模板吧,略挫,慢慢补充,慢慢优化。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#pragma comment(linker, "/STACK:1024000000");
#define EPS (1e-8)
#d...
分类:
其他好文 时间:
2014-06-05 02:01:37
阅读次数:
400
以前用树状数组做过一次,现在用线段树再刷一次。。。
首先必须先离散化。。。
然后建立2颗线段树,第一颗表示往左走,每个节点的值的分布。
第二颗表示往右走,每个节点的值的分布。
然后根据左右走的关系,判断出x,y的值。
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include
#include
#inclu...
分类:
其他好文 时间:
2014-06-03 01:25:54
阅读次数:
315
原文信息原文地址原文作者信息Justin GreenwoodMyGeneration
Softwarehttp://www.mygenerationsoftware.com/October 7, 2004系统需求:Microsoft
Windows 2000/XPMicrosoft .Net Fra...
分类:
Web程序 时间:
2014-06-02 13:33:13
阅读次数:
729
using System;using System.Data;using
System.Configuration;using System.Collections;using System.Web;using
System.Web.Security;using System.Web.UI;usin...
分类:
Web程序 时间:
2014-06-02 09:44:06
阅读次数:
237
#过滤oracle警告日志文件ORA-错误
$c=Get-ContentC:\script.txt|select-string-pattern"ora-"
#判断ORA-错误存在条件
#若$c返回值为null,则输出1返回值结束循环
if($c-eq$null)
{
write-host"STATE_OK"
$STATE_OK={return1;}
$b=&$STATE_OK
$b
}
#若$c返回值不为空,..
分类:
其他好文 时间:
2014-06-02 03:26:07
阅读次数:
197
导入MyEclipse的主题后,打开jsp或者html文件,jsvascript部分就蒙受上了一层白色,弄不掉了。症状如下:
解决办法如下:...
分类:
Web程序 时间:
2014-06-01 18:25:21
阅读次数:
460
其实这边是因为设置有问题,具体的解决方案如下:
第一步:点击项目->”你的文件“属性->配置属性->链接器->启用增量链接 将 是(/INCREMENTAL)改为 否(/INCREMENTAL:NO)
第二步:点击项目->”你的文件“属性->配置属性->C/C++ 将调试信息格式改为程序数据库(/Zi)
改完之后,重新调试一下程序,是不是问题已经解决了?
以下附上截图:...
分类:
其他好文 时间:
2014-06-01 01:08:13
阅读次数:
435