| Commit message (Expand) | Author | Age | Files | Lines |
| * | runtime: fallback to TEB arbitrary pointer when TLS slots are full | qmuntal | 2023-04-25 | 1 | -1/+6 |
| * | runtime: tidy _Stack* constant naming | Austin Clements | 2023-04-21 | 1 | -1/+1 |
| * | Revert "runtime: tidy _Stack* constant naming" | Austin Clements | 2023-04-20 | 1 | -1/+1 |
| * | runtime: tidy _Stack* constant naming | Austin Clements | 2023-04-20 | 1 | -1/+1 |
| * | all: replace leading spaces with tabs in assembly | Michael Pratt | 2023-03-23 | 1 | -1/+1 |
| * | runtime: implement high resolution timer on windows arm/arm64 | qmuntal | 2023-03-13 | 1 | -37/+0 |
| * | runtime: remove unnecessary NOFRAME flags on windows | qmuntal | 2023-03-01 | 1 | -3/+3 |
| * | runtime: delete unused cbctxts variable on windows assembly | qmuntal | 2023-01-25 | 1 | -2/+0 |
| * | runtime: remove unused badsignal2 on windows | qmuntal | 2023-01-24 | 1 | -22/+0 |
| * | runtime: factor out windows sigtramp | qmuntal | 2023-01-24 | 1 | -57/+28 |
| * | runtime,cmd/internal/obj/x86: use TEB TLS slots on windows/i386 | qmuntal | 2023-01-23 | 1 | -8/+38 |
| * | [dev.typeparams] runtime: use internal/abi.FuncPCABI0 to take address of asse... | Cherry Mui | 2021-05-21 | 1 | -7/+7 |
| * | runtime: abort when receiving a signal on a non-Go thread on Windows | Michael Anthony Knyszek | 2021-05-04 | 1 | -1/+3 |
| * | runtime: move Windows time.now implementations into separate files | Ian Lance Taylor | 2021-04-28 | 1 | -75/+0 |
| * | runtime: consolidate Windows time constants into single copy | Ian Lance Taylor | 2021-04-28 | 1 | -10/+1 |
| * | runtime: eliminate externalthreadhandler | Austin Clements | 2021-04-13 | 1 | -51/+0 |
| * | runtime: use newm for profileloop | Austin Clements | 2021-04-13 | 1 | -9/+0 |
| * | runtime: use compileCallback for ctrlhandler | Austin Clements | 2021-04-13 | 1 | -9/+0 |
| * | runtime: replace outdated documentation link in Windows' nanotime | Paschalis Tsilias | 2021-04-12 | 1 | -1/+3 |
| * | runtime: mark Windows' address-taken asm routines as ABIInternal | Michael Anthony Knyszek | 2021-03-19 | 1 | -11/+11 |
| * | runtime: use TOPFRAME to identify top-of-frame functions | Russ Cox | 2021-02-19 | 1 | -1/+1 |
| * | runtime: unify asmcgocall and systemstack traceback setup | Russ Cox | 2021-02-19 | 1 | -8/+4 |
| * | runtime: delete windows setlasterror (unused) | Russ Cox | 2021-02-19 | 1 | -5/+0 |
| * | runtime: clean up system calls during cgo callback init | Russ Cox | 2021-02-19 | 1 | -68/+11 |
| * | runtime: allow for usleep2HighRes to run without TLS setup | Alex Brainman | 2020-11-24 | 1 | -1/+10 |
| * | runtime,cmd/cgo: simplify C -> Go call path | Austin Clements | 2020-10-26 | 1 | -41/+26 |
| * | runtime: use CreateWaitableTimerEx to implement usleep | Alex Brainman | 2020-10-18 | 1 | -0/+36 |
| * | runtime: wrap nanotime, walltime, and write | Austin Clements | 2019-09-04 | 1 | -1/+1 |
| * | Revert "runtime: remove slow time compatibility hacks for wine" | Daniel Martà | 2019-09-02 | 1 | -0/+10 |
| * | runtime: remove slow time compatibility hacks for wine | Jason A. Donenfeld | 2019-08-29 | 1 | -10/+0 |
| * | runtime, crypto/x509: fix vet complaints for all windows | Russ Cox | 2019-05-09 | 1 | -7/+11 |
| * | runtime: fix vet complaints for linux/386 | Russ Cox | 2019-05-09 | 1 | -1/+1 |
| * | runtime, time: refactor startNano handling | Dmitry Vyukov | 2018-11-02 | 1 | -6/+1 |
| * | all: this big patch remove whitespace from assembly files | Zhou Peng | 2018-10-03 | 1 | -4/+4 |
| * | runtime: query thread stack size from OS on Windows | Austin Clements | 2018-07-02 | 1 | -2/+1 |
| * | runtime: initialize g0 stack bounds on Windows to full stack | Austin Clements | 2018-07-02 | 1 | -1/+2 |
| * | all: update comment URLs from HTTP to HTTPS, where possible | Tim Cooper | 2018-06-01 | 1 | -1/+1 |
| * | runtime: make time correctly update on Wine | Evgeniy Polyakov | 2017-04-25 | 1 | -1/+11 |
| * | runtime: update assembly var names after monotonic time changes | Josh Bleecher Snyder | 2017-02-21 | 1 | -3/+3 |
| * | time: optimize Now on darwin, windows | Russ Cox | 2017-02-09 | 1 | -8/+96 |
| * | time: record monotonic clock reading in time.Now, for more accurate comparisons | Russ Cox | 2017-02-03 | 1 | -2/+2 |
| * | runtime, cmd/compile: rename memclr -> memclrNoHeapPointers | Austin Clements | 2016-10-28 | 1 | -2/+2 |
| * | runtime, syscall: use FP instead of SP for parameters | Matthew Dempsky | 2016-09-30 | 1 | -2/+2 |
| * | runtime: change osyield to use Windows SwitchToThread | Alex Brainman | 2016-04-04 | 1 | -4/+13 |
| * | runtime: increase assumed stack size in externalthreadhandler | Austin Clements | 2016-01-07 | 1 | -1/+2 |
| * | runtime: really pass return value to Windows in externalthreadhandler | Alex Brainman | 2015-04-15 | 1 | -0/+2 |
| * | [dev.cc] runtime: remove comma at the end of DIVL instruction (fixes windows ... | Alex Brainman | 2015-02-17 | 1 | -1/+1 |
| * | runtime: remove trailing empty arrays in structs | Keith Randall | 2015-01-07 | 1 | -5/+5 |
| * | Revert "liblink, cmd/ld, runtime: remove stackguard1" | Russ Cox | 2015-01-05 | 1 | -2/+4 |
| * | liblink, cmd/ld, runtime: remove stackguard1 | Shenghou Ma | 2014-12-29 | 1 | -4/+2 |