1、標C庫函式中的函式
函式名: brk
功 能: 改變數據段空間分配
用 法: int brk(void *endds);
頭檔案:#include<alloc.h>
程式例:
#include <stdio.h>
#include <alloc.h>
int main(void)
{
char *ptr;
printf("Changing allocation with brk()\n");
ptr = malloc(1);
printf("Before brk() call: %lu bytes free\n", coreleft());
brk(ptr+1000);
printf(" After brk() call: %lu bytes free\n", coreleft());
return 0;
}
2、ARM體系結構 V5 新增的指令
BRK,軟體斷點指令;
CLZ,計數前導零指令,也是在V5中新增的。
注意:是大寫的