谦让歌曲

文章
5
资源
0
加入时间
2年10月21天

systemtap 用户态调试3

[root@localhost ~]# cat test.c#include <stdio.h>int main( void) {int a=0; a=fun(10,20); printf("%d\n",a);}int fun(int  a,int b){   return a+b; } stap -e 'probe process("a.out").f...

Elasticsearch目录结构

安装完es的目录结构如下:类型 描述 默认位置 设置 home es安装主目录   path.home bin 二进制脚本包含启动节点的elasticsearch {path.home}/bin   conf 配置文件包含elasticsearch.yml {path.home}/config path.con...

utime函数

utime函数:对一个文件的访问和修改时间#include <utime.h>int utime( const char *pathname, const struct utimbuf *times ); 返回值:若成功则返回0,若出错则返回-1此函数所使用的数据结构是:s...