일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DSP
- 배경 그림
- RBAC
- dirty cow
- frequency-domain spectrum analysis
- DP
- Security
- 운영체제
- 메카님
- Rr
- dtft
- TSet
- sampling theory
- 게임개발
- MLFQ
- STCF
- pdlc
- 언리얼엔진
- 유니티
- 게임 개발
- ret2libc
- Race condition
- 유스케이스
- stride
- Unity #Indie Game
- MAC
- Double free
- AINCAA
- CTF
- linear difference equation
Archives
- Today
- Total
목록API (1)
다양한 기록
파일 - 인터페이스
APIs 시스템 콜- open (파일 디스크립터 리턴)- I/O(read, write)- attribute(stat, chown, chmod 등 속성 관련)- create (inode 할당)- name resolution (디렉토리 계층 트래버스)- 파일 시스템 관리- 디렉토리 관리.... OS 내부- 블록 할당, 반납- inode 할당, 반납- namei (name resolution을 하기 위한 내부 인터페이스)- 버퍼 관련 // open with create flagint fd = open("foo", O_CREAT | O_WRONLY | O_TRUNC, S_IRUSR | S_IWUSR);// creat() ,, 잘 안씀int fd = creat("foo");open()인자- name- flags(..
운영체제
2024. 5. 20. 15:21