
操作系统
文章平均质量分 75
zero_lee
这个作者很懒,什么都没留下…
展开
-
调用栈 (Call Stack)
调用栈的英文叫做call stack,从其英文书名来看,知道它本身就是一个栈,故而它满足栈的先入后出的特性。wiki上有篇文章讲述call stack。关于栈的溢出(stack overflow),有下面的定义:Since the call stack is organized as a stack, the caller pushes the return addre原创 2012-08-14 13:26:15 · 5141 阅读 · 0 评论 -
[Happy Coding] 关于system/exit/wait的解释
关于system/exit/wait的解释先看下面的代码段:static int system2(const char *command){ pid_t pid; int status; pid = fork(); if (pid == 0) { int null = open("/dev/null", O_RDWR); d原创 2013-10-29 20:44:31 · 1070 阅读 · 0 评论