Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- DNS
- Cache
- Kernel
- Python
- cadre
- 칭찬교육
- 리눅스
- apachetop
- Hack
- Performance
- Linux
- Disk
- 디스크
- PERL
- ext3
- 쇼펜의상속자 #킨텍스메가쇼 #섬유향수탈취제
- CPU
- pid
- rm -rf
- goaccess
- PORT
- rm
- http
- iptables
- 솔라리스
- windows
- 좌절교육
- Bash
- ext4
- rsync
Archives
- Today
- Total
Ben's
memtest.c 본문
728x90
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#define NA_GIGABYTE (1024 * 1024 * 1024)
int main() {
char *nhko_memory;
char *init;
long megabyte = NA_GIGABYTE;
long i;
nhko_memory = (char *)malloc(megabyte);
init = nhko_memory;
while (1) {
for (i=0; i<NA_GIGABYTE; i++) {
*nhko_memory='a';
nhko_memory++;
}
nhko_memory = init;
}
}
'리눅스' 카테고리의 다른 글
ant 설치 (0) | 2013.01.17 |
---|---|
리눅스 서버 캐릭터셋 셋팅방법 (0) | 2013.01.17 |
웹로그 (0) | 2013.01.17 |
ss VS netstat (0) | 2013.01.17 |
CentOS 4 에서 yum kernel 사용할때 주의!!! (0) | 2013.01.17 |