일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- map
- C++
- 구현
- dfs
- Server
- N과 M(2)
- 자바스크립트
- 백트래킹
- 제로베이스
- 멀티스레드
- 프로그래머스
- 메모리 배리어
- leetcode
- 프론트엔드 스쿨
- socket
- 제로베이스 프론트엔드 스쿨
- 백준
- 코딩테스트
- c#
- 서버
- React
- JavaScript
- 완전탐색
- 문자열&연산자
- BFS
- 코딩테스트 스터디
- 알고리즘
- MemoryBarrier
- 구조체
- Algorithm
- Today
- Total
목록멀티스레드 (3)
Written
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; using System.Threading.Tasks; namespace client { //SpinLock class ..
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; using System.Threading.Tasks; namespace client { //Dea..
싱글 스레드, 멀티 스레드 코드 흐름의 차이 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; namespace client { // 메모리 배리어 // 1) 코드 재배치 억제 // 2) 가시성 class Program { static int x = 0; static i..