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

Issue 4149046: code review 4149046: os: Plan 9 support. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
13 years, 2 months ago by paulzhol
Modified:
13 years, 1 month ago
Reviewers:
CC:
rsc, ality, r, r2, golang-dev
Visibility:
Public.

Description

os: Plan 9 support.

Patch Set 1 : diff -r fd41b76c8e51 https://go.googlecode.com/hg/ #

Total comments: 24

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

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

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

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

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

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

Total comments: 6

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

Total comments: 2

Patch Set 9 : diff -r a15522fba283 https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+926 lines, -755 lines) Patch
M src/pkg/os/Makefile View 1 chunk +19 lines, -0 lines 0 comments Download
A src/pkg/os/dir_plan9.go View 1 2 3 4 5 6 7 1 chunk +300 lines, -0 lines 0 comments Download
A src/pkg/os/env_plan9.go View 1 1 chunk +91 lines, -0 lines 0 comments Download
M src/pkg/os/error.go View 1 2 3 4 5 3 chunks +0 lines, -81 lines 0 comments Download
A src/pkg/os/error_plan9.go View 1 2 3 4 5 6 7 8 1 chunk +53 lines, -0 lines 0 comments Download
M src/pkg/os/error_posix.go View 1 2 3 4 5 4 chunks +5 lines, -30 lines 0 comments Download
M src/pkg/os/exec.go View 1 2 3 4 5 6 1 chunk +0 lines, -120 lines 0 comments Download
M src/pkg/os/exec_plan9.go View 1 2 3 4 5 6 2 chunks +76 lines, -25 lines 0 comments Download
M src/pkg/os/exec_posix.go View 1 2 3 4 5 6 4 chunks +3 lines, -42 lines 0 comments Download
M src/pkg/os/file.go View 7 chunks +14 lines, -242 lines 0 comments Download
A src/pkg/os/file_plan9.go View 1 2 3 4 5 6 7 1 chunk +231 lines, -0 lines 0 comments Download
M src/pkg/os/file_posix.go View 19 chunks +19 lines, -211 lines 0 comments Download
M src/pkg/os/proc.go View 1 chunk +2 lines, -2 lines 0 comments Download
A src/pkg/os/stat_plan9.go View 1 2 3 4 5 6 7 1 chunk +84 lines, -0 lines 0 comments Download
A src/pkg/os/sys_plan9.go View 1 1 chunk +27 lines, -0 lines 0 comments Download
M src/pkg/os/time.go View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 14
paulzhol
Hello rsc (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
13 years, 2 months ago (2011-02-09 09:06:38 UTC) #1
ality
http://codereview.appspot.com/4149046/diff/4001/src/pkg/os/dir_plan9.go File src/pkg/os/dir_plan9.go (right): http://codereview.appspot.com/4149046/diff/4001/src/pkg/os/dir_plan9.go#newcode11 src/pkg/os/dir_plan9.go:11: const ( This is not needed. http://codereview.appspot.com/4149046/diff/4001/src/pkg/os/dir_plan9.go#newcode24 src/pkg/os/dir_plan9.go:24: func ...
13 years, 2 months ago (2011-02-09 21:09:45 UTC) #2
r
a few comments i missed the definition of iserror. if we stay with that approach, ...
13 years, 2 months ago (2011-02-09 23:46:02 UTC) #3
paulzhol
Thanks for the reviews! iserror is defined in error_posix.go as: func iserror(errno int) bool { ...
13 years, 2 months ago (2011-02-10 22:59:38 UTC) #4
paulzhol
http://codereview.appspot.com/4149046/diff/4001/src/pkg/os/dir_plan9.go File src/pkg/os/dir_plan9.go (right): http://codereview.appspot.com/4149046/diff/4001/src/pkg/os/dir_plan9.go#newcode11 src/pkg/os/dir_plan9.go:11: const ( On 2011/02/09 21:09:45, ality wrote: > This ...
13 years, 2 months ago (2011-02-12 14:49:02 UTC) #5
paulzhol
sync with tip
13 years, 2 months ago (2011-02-26 15:47:28 UTC) #6
paulzhol
synced ProcAttr changes, PTAL.
13 years, 1 month ago (2011-03-26 15:05:15 UTC) #7
r
http://codereview.appspot.com/4149046/diff/41001/src/pkg/os/dir_plan9.go File src/pkg/os/dir_plan9.go (right): http://codereview.appspot.com/4149046/diff/41001/src/pkg/os/dir_plan9.go#newcode69 src/pkg/os/dir_plan9.go:69: if count > 0 && len(result) >= count { ...
13 years, 1 month ago (2011-03-31 22:57:41 UTC) #8
paulzhol
Thanks! http://codereview.appspot.com/4149046/diff/41001/src/pkg/os/dir_plan9.go File src/pkg/os/dir_plan9.go (right): http://codereview.appspot.com/4149046/diff/41001/src/pkg/os/dir_plan9.go#newcode69 src/pkg/os/dir_plan9.go:69: if count > 0 && len(result) >= count ...
13 years, 1 month ago (2011-04-01 20:16:44 UTC) #9
rsc
LGTM Leaving for Rob. http://codereview.appspot.com/4149046/diff/49001/src/pkg/os/error_plan9.go File src/pkg/os/error_plan9.go (right): http://codereview.appspot.com/4149046/diff/49001/src/pkg/os/error_plan9.go#newcode32 src/pkg/os/error_plan9.go:32: Eshortstat Error = NewError("stat buffer ...
13 years, 1 month ago (2011-04-01 21:37:28 UTC) #10
paulzhol
http://codereview.appspot.com/4149046/diff/49001/src/pkg/os/error_plan9.go File src/pkg/os/error_plan9.go (right): http://codereview.appspot.com/4149046/diff/49001/src/pkg/os/error_plan9.go#newcode32 src/pkg/os/error_plan9.go:32: Eshortstat Error = NewError("stat buffer too small") On 2011/04/01 ...
13 years, 1 month ago (2011-04-01 22:05:43 UTC) #11
r
LGTM woo hoo
13 years, 1 month ago (2011-04-01 22:26:42 UTC) #12
r2
waiting for the syscall changes before committing (3816043) -rob
13 years, 1 month ago (2011-04-01 22:29:39 UTC) #13
r
13 years, 1 month ago (2011-04-02 21:29:02 UTC) #14
*** Submitted as http://code.google.com/p/go/source/detail?r=f0f78e666988 ***

os: Plan 9 support.

R=rsc, ality, r, r2
CC=golang-dev
http://codereview.appspot.com/4149046

Committer: Rob Pike <r@golang.org>
Sign in to reply to this message.

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