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
- c++
- Golang
- Callback
- 리뷰
- window
- Sync
- json
- channel
- write
- API
- package
- JavaScript
- GO 언어
- windows
- Close
- bitcoin
- Linux
- mutex
- tcp
- install
- 영화
- FOR
- C
- http
- range
- File
- go
- 책
- Python
- go언어
Archives
- Today
- Total
목록store (1)
Code Habit
Go ) 원자적 연산
원자적 연산은 더 이상 쪼갤 수 없는 연산이라는 뜻이다. 따라서 여러 스레드(고루틴), CPU코어에서 같은 변수(메모리)를 수정할 때 서로 영향을 받지 않고 안전하게 연산할 수 있다. 보통 원자적 연산은 CPU의 명령어를 직접 사용하여 구현되어 있다. 사용 예제이다. package main import { "fmt" "runtime" "sync" "sync/atomic" } func main() { runtime.GOMAXPROCS(runtime.NumCPU()) // 모든 CPU 사용 var data int32 = 0 wg := new(sync.WaitGroup) for i:=0; i
카테고리 없음
2020. 6. 12. 07:57