日期:2014-05-16 浏览次数:21368 次
 27 void
 28 err_sys(const char *fmt, ...)
 29 {
 30     va_list     ap;
 31
 32     va_start(ap, fmt);
 33     err_doit(1, LOG_ERR, fmt, ap);
 34     va_end(ap);
 35     exit(1);
 36 }
 37
 38 /* Fatal error related to system call
 39  * Print message, dump core, and terminate */