Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(9)

Issue 138250043: code review 138250043: syscall: keep Windows syscall pointers live too (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
10 years, 9 months ago by bradfitz
Modified:
10 years, 9 months ago
Reviewers:
r, brainman, rsc
CC:
rsc, golang-codereviews
Visibility:
Public.

Description

syscall: keep Windows syscall pointers live too Like https://codereview.appspot.com/139360044

Patch Set 1 #

Patch Set 2 : diff -r fc588981a45afa430a2d2cd29d234403cb86e1bd https://go.googlecode.com/hg/ #

Patch Set 3 : diff -r fc588981a45afa430a2d2cd29d234403cb86e1bd https://go.googlecode.com/hg/ #

Patch Set 4 : diff -r fc588981a45afa430a2d2cd29d234403cb86e1bd https://go.googlecode.com/hg/ #

Patch Set 5 : diff -r fc588981a45afa430a2d2cd29d234403cb86e1bd https://go.googlecode.com/hg/ #

Patch Set 6 : diff -r e371f488965f17d3ad41ca76234e25c7cbbd15e3 https://go.googlecode.com/hg/ #

Total comments: 4

Patch Set 7 : diff -r e371f488965f17d3ad41ca76234e25c7cbbd15e3 https://go.googlecode.com/hg/ #

Patch Set 8 : diff -r 8d62dbfa262c956bd8b3ad283da09f989fb197f1 https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+33 lines, -6 lines) Patch
M src/syscall/mksyscall_windows.go View 1 2 3 4 5 6 7 chunks +22 lines, -2 lines 0 comments Download
M src/syscall/zsyscall_windows.go View 1 2 3 4 5 6 8 chunks +11 lines, -4 lines 0 comments Download

Messages

Total messages: 22
bradfitz
Hello alex.brainman@gmail.com, rsc@golang.org (cc: golang-codereviews@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
10 years, 9 months ago (2014-09-09 00:21:46 UTC) #1
rsc
https://codereview.appspot.com/138250043/diff/90001/src/syscall/mksyscall_windows.go File src/syscall/mksyscall_windows.go (right): https://codereview.appspot.com/138250043/diff/90001/src/syscall/mksyscall_windows.go#newcode159 src/syscall/mksyscall_windows.go:159: p.fn.use(p.Name) delete https://codereview.appspot.com/138250043/diff/90001/src/syscall/mksyscall_windows.go#newcode162 src/syscall/mksyscall_windows.go:162: p.fn.use(p.tmpVar()) This is the important ...
10 years, 9 months ago (2014-09-09 00:35:10 UTC) #2
bradfitz
PTAL
10 years, 9 months ago (2014-09-09 00:37:12 UTC) #3
rsc
LGTM Thanks.
10 years, 9 months ago (2014-09-09 00:43:44 UTC) #4
brainman
LGTM Thank you. Alex
10 years, 9 months ago (2014-09-09 00:44:52 UTC) #5
bradfitz
*** Submitted as https://code.google.com/p/go/source/detail?r=4eda5e4001fd *** syscall: keep Windows syscall pointers live too Like https://codereview.appspot.com/139360044 LGTM=rsc, ...
10 years, 9 months ago (2014-09-09 00:47:12 UTC) #6
brainman
Sorry, but I am trying to rebuild go.sys/windows/zsyscall_windows.go (by using new mksyscall_windows.go) now, and it ...
10 years, 9 months ago (2014-09-09 01:45:33 UTC) #7
bradfitz
atomic.StorePointer to a package global variable would work and can't be optimized away, but it's ...
10 years, 9 months ago (2014-09-09 01:46:54 UTC) #8
brainman
On 2014/09/09 01:46:54, bradfitz wrote: > atomic.StorePointer to a package global variable would work and ...
10 years, 9 months ago (2014-09-09 01:49:04 UTC) #9
bradfitz
[+r] On Mon, Sep 8, 2014 at 6:49 PM, <alex.brainman@gmail.com> wrote: > On 2014/09/09 01:46:54, ...
10 years, 9 months ago (2014-09-09 01:54:13 UTC) #10
r
It may be my baby but I'm hoping for some co-parenting. If no one else ...
10 years, 9 months ago (2014-09-09 02:28:14 UTC) #11
bradfitz
It takes a village to curate a syscall package. On Mon, Sep 8, 2014 at ...
10 years, 9 months ago (2014-09-09 02:31:18 UTC) #12
rsc
Just copy src/syscall/asm.s to go.sys/*
10 years, 9 months ago (2014-09-09 02:48:25 UTC) #13
brainman
On 2014/09/09 02:48:25, rsc wrote: > Just copy src/syscall/asm.s to go.sys/* I have a few ...
10 years, 9 months ago (2014-09-09 02:53:45 UTC) #14
rsc
On Mon, Sep 8, 2014 at 10:53 PM, <alex.brainman@gmail.com> wrote: > On 2014/09/09 02:48:25, rsc ...
10 years, 9 months ago (2014-09-09 14:54:14 UTC) #15
brainman
On 2014/09/09 14:54:14, rsc wrote: > > For things other than package syscall, my suggestion ...
10 years, 9 months ago (2014-09-09 23:59:48 UTC) #16
brainman
On 2014/09/09 14:54:14, rsc wrote: > ... > This avoids the problem by separating the ...
10 years, 9 months ago (2014-09-17 04:55:48 UTC) #17
brainman
On 2014/09/17 04:55:48, brainman wrote: > On 2014/09/09 14:54:14, rsc wrote: > > ... > ...
10 years, 9 months ago (2014-10-01 07:31:15 UTC) #18
r
Sure. Thanks. -rob On Wed, Oct 1, 2014 at 12:31 AM, <alex.brainman@gmail.com> wrote: > On ...
10 years, 9 months ago (2014-10-01 21:13:50 UTC) #19
brainman
On 2014/10/01 21:13:50, r wrote: The undo CL 147440043, with new changes in 143160046 and ...
10 years, 9 months ago (2014-10-02 05:44:02 UTC) #20
brainman
syscall changes (CL 143160046) are ready for review. Alex
10 years, 9 months ago (2014-10-03 02:10:55 UTC) #21
brainman
10 years, 9 months ago (2014-10-05 23:30:09 UTC) #22
Message was sent while issue was closed.
Last change to go.sys/windows https://codereview.appspot.com/152200043

Alex
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b