반응형
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 | 31 |
Tags
- 긴옵션
- 커널
- 한빛미디어
- getopts
- DBMS 개발
- newSQL
- 컴퓨터 강좌
- FreeBSD
- go
- Programming
- Preprocessor
- 전처리기
- TiDB
- DBMS
- 약어
- 포인터변수
- 구조와 원리
- SQLite
- TiKV
- kernel
- bash
- Symbol
- OS 커널
- Pointer
- 함수포인터
- UNIX
- Windows via c/c++
- UNIX Internals
- 포인터
- Golang
Archives
- Today
- Total
목록goroutine (1)
sonumb
go routine ID 획득하기.
직접 호출 할 수 있는 함수는 제공되지 않는 듯 하다. 아래 코드를 이용하여 id를 획득하는 것으로 해결함. 간단히 설명하자면 콜스택에 ID가 기입되어 있는데, 이를 획득하여 타입변환후 반환하는 코드다. https://gist.github.com/metafeather/3615b23097836bc36579100dac376906 Get goroutine id for debugging Get goroutine id for debugging. GitHub Gist: instantly share code, notes, and snippets. gist.github.com package main import ( "fmt" "runtime" "strconv" "strings" "sync" ) func goid() i..
개발자 이야기/Go
2021. 10. 27. 13:42