Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 서버
- BFS
- JavaScript
- 코딩테스트
- 백트래킹
- C++
- 프로그래머스
- leetcode
- 제로베이스
- dfs
- socket
- Algorithm
- 구현
- c#
- 알고리즘
- 구조체
- 자바스크립트
- 멀티스레드
- 문자열&연산자
- 메모리 배리어
- map
- N과 M(2)
- MemoryBarrier
- 코딩테스트 스터디
- Server
- 완전탐색
- React
- 백준
- 프론트엔드 스쿨
- 제로베이스 프론트엔드 스쿨
Archives
- Today
- Total
목록메모리 배리어 (1)
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 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..
Server/멀티스레드
2023. 7. 18. 15:03