- 浏览: 1496265 次
- 性别:
- 来自: 北京
-
文章分类
- 全部博客 (691)
- linux (207)
- shell (33)
- java (42)
- 其他 (22)
- javascript (33)
- cloud (16)
- python (33)
- c (48)
- sql (12)
- 工具 (6)
- 缓存 (16)
- ubuntu (7)
- perl (3)
- lua (2)
- 超级有用 (2)
- 服务器 (2)
- mac (22)
- nginx (34)
- php (2)
- 内核 (2)
- gdb (13)
- ICTCLAS (2)
- mac android (0)
- unix (1)
- android (1)
- vim (1)
- epoll (1)
- ios (21)
- mysql (3)
- systemtap (1)
- 算法 (2)
- 汇编 (2)
- arm (3)
- 我的数据结构 (8)
- websocket (12)
- hadoop (5)
- thrift (2)
- hbase (1)
- graphviz (1)
- redis (1)
- raspberry (2)
- qemu (31)
- opencv (4)
- socket (1)
- opengl (1)
- ibeacons (1)
- emacs (6)
- openstack (24)
- docker (1)
- webrtc (11)
- angularjs (2)
- neutron (23)
- jslinux (18)
- 网络 (13)
- tap (9)
- tensorflow (8)
- nlu (4)
- asm.js (5)
- sip (3)
- xl2tp (5)
- conda (1)
- emscripten (6)
- ffmpeg (10)
- srt (1)
- wasm (5)
- bert (3)
- kaldi (4)
- 知识图谱 (1)
最新评论
-
wahahachuang8:
我喜欢代码简洁易读,服务稳定的推送服务,前段时间研究了一下go ...
websocket的helloworld -
q114687576:
http://www.blue-zero.com/WebSoc ...
websocket的helloworld -
zhaoyanzimm:
感谢您的分享,给我提供了很大的帮助,在使用过程中发现了一个问题 ...
nginx的helloworld模块的helloworld -
haoningabc:
leebyte 写道太NB了,期待早日用上Killinux!么 ...
qemu+emacs+gdb调试内核 -
leebyte:
太NB了,期待早日用上Killinux!
qemu+emacs+gdb调试内核
参考 http://blog.chinaunix.net/uid-26822401-id-3153147.html
似乎跟信号那有关系
似乎跟信号那有关系
记账记录的结构体定义在<sys/acct.h>头文件里,并看起来像: typedef u_short comp_t; /* 3-bit base 8 exponent; 13-bit fraction */ struct acct { char ac_flag; /* flag (see following Figure) */ char ac_stat; /* termination status (signal & core flag only) */ /* Solaris Only */ uid_t ac_uid; /* real user ID */ gid_t ac_gid; /*real group ID */ dev_t ac_tty; /* controlling terminal */ time_t ac_btime; /* starting calendar time */ comp_t ac_utime; /* user CPU time (clock ticks) */ comp_t ac_stime; /* system CPU time (clock ticks) */ comp_t ac_etime; /* elapsed time (clock ticks) */ comp_t ac_mem; /* average memory usage */ comp_t ac_io; /* bytes transfered (by read and write) */ /* "blocks on BSD systems */ comp_t ac_rw; /* blocks read or written */ /* (not present on BSD systems) */ char ac_comm[8]; /* command name: [8] for Solaris, [10] for Mac OS X, [16] for FreeBSD, and [17] for Linux */ };
#include <unistd.h> #include <signal.h> int main(void) { pid_t pid; if ((pid = fork()) < 0) { printf("fork error\n"); exit(1); } else if (pid != 0) { /* parent */ sleep(2); exit(2); /* terminate with exit status 2 */ } /* first child */ if ((pid = fork()) < 0) { printf("fork error\n"); exit(1); } else if (pid != 0) { sleep(4); abort(); /* terminate with core dump */ } /* second child */ if ((pid = fork()) < 0) { printf("fork error\n"); exit(1); } else if (pid != 0) { execl("/bin/dd", "dd", "if=/etc/termcap", "of=/dev/null", NULL); exit(7); /* shouldn't get here */ } /* third child */ if ((pid = fork()) < 0) { printf("fork error\n"); exit(1); } else if (pid != 0) { sleep(8); exit(0); /* normal exit */ } /* fourth child */ sleep(6); kill(getpid(), SIGKILL); /* terminate w/signal, no core dump */ exit(6); /* shouldn't get here */ }
#include <sys/acct.h> #include <unistd.h> #include <stdio.h> #ifdef HAS_SA_STAT #define FMT "%-*.*s e = %6ld, chars = %7ld, stat = %3u: %c %c %c %c\n" #else #define FMT "%-*.*s e = %6ld, chars = %7ld, %c %c %c %c\n" #endif #ifndef HAS_ACORE #define ACORE 0 #endif #ifndef HAS_AXSIG #define AXSIG 0 #endif static unsigned long compt2ulong(comp_t comptime) /* convert comp_t to unsigend long */ { unsigned long val; int exp; val = comptime & 0x1fff; /* 13-bit fraction */ exp = (comptime >> 13) & 7; /* 3-bit exponent (0-7) */ while (exp-- > 0) val *= 8; return(val); } int main(int argc, char *argv[]) { struct acct acdata; FILE *fp; if (argc != 2) { printf("usage: parcct filename\n"); exit(1); } if ((fp = fopen(argv[1], "r")) == NULL) { printf("can't open %s\n", argv[1]); exit(1); } while (fread(&acdata, sizeof(acdata), 1, fp) == 1) { printf(FMT, (int)sizeof(acdata.ac_comm), (int)sizeof(acdata.ac_comm), acdata.ac_comm, compt2ulong(acdata.ac_etime), compt2ulong(acdata.ac_io), #ifdef HAS_SA_STAT (unsigned char) acdata.ac_stat, #endif acdata.ac_flag & ACORE ? 'D' : ' ', acdata.ac_flag & AXSIG ? 'X' : ' ', acdata.ac_flag & AFORK ? 'F' : ' ', acdata.ac_flag & ASU ? 'S' : ' '); } if (ferror(fp)) { printf("read error\n"); exit(1); } exit(0); }
发表评论
-
xl2tp 备份
2019-09-24 16:25 7782019年9月24日更新: 注意,需要开启firewall ... -
sdl笔记
2019-01-31 17:19 763sdl教程教程 https://github.com/Twin ... -
tinyemu
2019-01-24 17:59 1475参考https://bellard.org/jslinux/t ... -
aws搭建xl2tp给iphone使用
2018-12-26 21:37 19362019年12月26日 可以参考原来的配置 https:// ... -
consul的基本使用
2017-06-27 11:13 1443### 安装 [centos7上consul的安装](ht ... -
lvs的helloworld
2017-06-13 20:36 624###################lvs######### ... -
系统调用的helloworld
2017-05-04 16:14 682《2.6内核标准教程》 p293 #include < ... -
bitcoin和cgminer的安装
2017-04-05 22:45 1984参考 http://blog.csdn.net/rion_ch ... -
ceph安装和常用命令
2017-03-21 21:55 984/etc/hosts ssh-keygen ssh-copy- ... -
mobile terminal 笔记
2016-12-02 15:35 687找出旧的iphone4 越狱之后可以变个小操作系统 mobi ... -
socket基础和select(python)
2016-06-14 17:21 1839上接 c语言的socket基础ht ... -
socket基础(c语言)
2016-06-14 16:45 1037不使用select 普通的基础socket连接,对多个客户端的 ... -
ffmpeg+nginx 的直播(2,直播摄像头和麦克风)
2016-05-28 20:21 4418假设我的服务器是centos7 192.168.139.117 ... -
ffmpeg+nginx 的直播(1,直播播放的视频文件)
2016-05-26 17:11 665164位操作系统centos7 ############ 1.一 ... -
socat和netcat(nc)
2016-04-29 22:36 1782转 原文链接: http://www.wenquan.name ... -
neutron基础九(qemu nat网络)
2016-02-06 17:21 1667接上基础八,kvm透传nested忽略 1.在主机ce ... -
neutron基础八(qemu 桥接网络)
2016-02-06 13:13 1567qemu的桥接和nat的qemu启动命令是一样的,但是后续的脚 ... -
neutron基础七(qemu tap)
2016-02-02 17:02 1059使用qemu 建立个虚拟机 然后用tap设备, 根据基础六,t ... -
neutron基础六(bridge fdb)
2016-01-28 18:30 2316转发表 在三台机器上建立三个namespace 192.16 ... -
南北流量
2016-01-23 23:26 1861一、三层网络架构: 接入层:负责服务器的接入和隔离 汇聚层:汇 ...
相关推荐
BSD Process Accounting version 3 file format:这个选项用于启用 BSD 进程记账功能的第三版文件格式,能够记录每个进程的 PID 和父进程的 PID。 Sysctl support:这个选项用于启用 Sysctl 功能,用于控制和监控...
该选项用于启用 BSD 进程记账,它将进程信息写入文件中,包括进程的创建时间、创建者、内存占用等信息。 6. Auditing support 该选项用于启用审计支持,用于和内核的某些子模块同时工作,例如 Security Enhanced ...
另外,BSD进程记账(BSD Process Accounting)能够通知内核记录程序执行时的统计数据,并将其写入文件中。 系统调用控制支持(Sysctl support)选项允许在不重新编译内核或重启系统的情况下动态更改内核参数和变量...
例如,启用交换分区的支持(Support for paging of anonymous memory (swap)),启用SystemV IPC(进程间通信机制),启用POSIX消息队列(POSIX Message Queues),以及是否启用BSD进程记账(BSD Process Accounting...
在操作系统的设计概述中,文档详细介绍了4.4 BSD系统设施和内核的相关内容,包括内核的组织、内核服务、进程管理、信号处理、进程组和会话等。内存管理作为操作系统的核心部分,4.4 BSD采取的设计决策和内核内部的...