일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- memory
- storage system
- hardware
- Operating System
- 커널 프로그래밍
- github
- overflow
- Samsung
- Machine Learning
- ssd
- core dumped
- deep learning
- framework
- Cache
- 시스템 소프트웨어
- 키워드
- Intel
- rocksdb
- software
- Git
- 포트 번호 변경
- FTL
- Flash Memory
- kernel
- performance
- USENIX
- linux
- 시스템 프로그래밍
- Today
- Total
목록Operating System (2)
Happy to visit my research note ^^

Chap 1 Our need for timely data analysis in increasing 1. Microsecond/millisecond analysis 2. Gigabytes, terabytes, petabytes per query 3. Scalability, distributed systems 4. Energy and efficiency needs at the end of the day, how fast can you read and write your data from storage device ㅡ> this is what we will be studing if far from the CPU, latency and throughput get worse but capacity will be ..
linux상에서 kernel programming을 하던 중 core dumped error가 발생하여 이번 게시물을 작성하게 되었다. Segmentation Fault 먼저, segmentation fault는 program이 memory에 접근할 때 잘못된 영역에 접근하려고 할 때 발생한다. 예로는 : Pointer Issue : 잘못된 pointer를 사용해서 읽거나 쓸 때 발생한다. 예를 들어, NULL pointer를 참조하거나 이미 해제된 memory에 접근하는 경우가 있다. Array Issue : 배열의 범위를 벗어난 index로 접근하거나, 배열을 선언하지 않은 pointer로 접근할 때 발생한다. Stack Overflow : 함수 호출 시 stack frame이 너무 많이 쌓이면 st..