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 | 29 | 30 |
Tags
- 쇼펜의상속자 #킨텍스메가쇼 #섬유향수탈취제
- rm
- Disk
- goaccess
- CPU
- cadre
- Python
- windows
- pid
- rsync
- PORT
- 솔라리스
- PERL
- Cache
- Kernel
- Hack
- 좌절교육
- apachetop
- Performance
- 디스크
- DNS
- ext4
- http
- Linux
- ext3
- 리눅스
- rm -rf
- iptables
- Bash
- 칭찬교육
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 |