在 Konsole 里运行,找到了退出地方的代码:
[code:1] /* Create the splash FIFO if it's not already in place. */
if (stat(SPLASH_FIFO, &mystat) == -1 || !S_ISFIFO(mystat.st_mode)) {
unlink(SPLASH_FIFO);
if (mkfifo(SPLASH_FIFO, 0700))
exit(3);
}
[/code:1]
这段什么意思?
不知道在 rc 里,是不是也是这里的问题……………………
