一、认识栈帧先来看一段神奇的代码:(windows下,代码如下)#include<stdio.h>
#include<stdlib.h>
#include<Windows.h>
voidfun()
{
printf("YouAreDone\n");
Sleep(2000);
printf("SupposeTheComputerWillShutDown~~~~\n");
//上面这行如果换成system("re..
分类:
其他好文 时间:
2016-06-17 08:31:47
阅读次数:
269
//环境centos5.x//程序实例1:
#include<stdio.h>
#include<stdlib.h>
voidbug()
{
system("reboot");//rebootsystem
exit(0);//endprocess
}
intstack_test(inta,intb)//函数压栈中依次压入主函数a,b拷贝值,b在高地址
{//压栈顺序是参数从右到左,然后栈帧..
分类:
系统相关 时间:
2016-04-01 06:48:29
阅读次数:
178
Linux进程的栈和进程中函数的栈帧
主要理解了Linux进程的栈和函数的栈帧的区别和联系...
分类:
系统相关 时间:
2015-03-05 23:46:29
阅读次数:
273