版权所有 © 2014 tutorialspoint
acct - 打开或关闭进程会计
#include <unistd.h> int acct(const char *filename);
int acct(const char *filename);
当使用现有文件名作为参数调用时,会计功能被打开,每个终止进程的记录在它终止时被追加到filename。NULL 参数会导致会计功能被关闭。
成功时,返回零。出错时,返回 -1,并适当地设置errno。
SVr4, 4.3BSD(但不是 POSIX)。
崩溃发生时,不会生成运行程序的任何会计信息。特别是,永远不会对非终止进程进行会计。
广告