summaryrefslogtreecommitdiff
path: root/src/syscall/env_plan9.go
Commit message (Collapse)AuthorAgeFilesLines
* syscall: don't cache environment variables on Plan 9David du Colombier2014-10-161-82/+15
| | | | | | | | | Fixes issue 8849. LGTM=bradfitz, aram R=bradfitz, rsc, aram CC=golang-codereviews https://codereview.appspot.com/158970045
* syscall: fix Setenv for plan 9Nicolas Owens2014-10-021-0/+1
| | | | | | | | | | | | | envi needs to be updated during Setenv so the key can be correctly deleted later with Unsetenv. Update issue 8849. LGTM=0intro R=bradfitz, 0intro CC=golang-codereviews https://codereview.appspot.com/149300046 Committer: David du Colombier <0intro@gmail.com>
* os, syscall: add UnsetenvBrad Fitzpatrick2014-10-011-3/+35
| | | | | | | | | | | | | Also address a TODO, making Clearenv pass through to cgo. Based largely on Minux's earlier https://codereview.appspot.com/82040044 Fixes Issue 6423 LGTM=iant, alex.brainman, r, rsc R=rsc, iant, r, alex.brainman CC=golang-codereviews https://codereview.appspot.com/148370043
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+142
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.