일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- stride
- ret2libc
- 배경 그림
- 유니티
- linear difference equation
- sampling theory
- MAC
- 언리얼엔진
- dtft
- pdlc
- CTF
- 게임개발
- Double free
- DP
- TSet
- DSP
- MLFQ
- RBAC
- 게임 개발
- Rr
- AINCAA
- 운영체제
- dirty cow
- frequency-domain spectrum analysis
- Security
- 유스케이스
- Race condition
- 메카님
- Unity #Indie Game
- STCF
Archives
- Today
- Total
목록condition variable (1)
다양한 기록
조건 변수, 생산자/소비자 문제
락은 상호배제를 위해서 조건변수는 동기화를 위해서 void *child(void *arg) { printf("child\n"); return NULL; } int main(int argc, char *argv[]) { printf("parent: begin\n"); pthread_t c; pthread_create(&c, NULL, child, NULL); printf("parent: end\n"); return 0; } 부모 스레드와 자식 스레드 중 무엇이 먼저 끝날지 알 수 없음. volatile int done = 0; void *child(void *arg) { printf("child\n"); done = 1; return NULL; } int main(int argc, char *argv[])..
운영체제
2024. 4. 18. 21:51