일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 유스케이스
- photon fusion2
- MLFQ
- Unreal Engine
- Multiplay
- 언리얼엔진
- stride
- map design
- 언리얼 엔진
- gameplay ability system
- 메카님
- Delegate
- ret2libc
- animation
- DSP
- gravity direction
- 게임개발
- 유니티
- CTF
- Security
- Aegis
- MAC
- Race condition
- unity
- Replication
- gameplay effect
- 게임 개발
- dirty cow
- ability task
- gas
Archives
- Today
- Total
목록Mount (1)
Replicated

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