Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
97e11c7d
Commit
97e11c7d
authored
10 years ago
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(do) child listens on ctx too
parent
68618f3f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
util/do.go
util/do.go
+9
-2
util/do_test.go
util/do_test.go
+1
-1
No files found.
util/do.go
View file @
97e11c7d
package
util
import
"code.google.com/p/go.net/context"
import
"
github.com/jbenet/go-ipfs/Godeps/_workspace/src/
code.google.com/p/go.net/context"
func
Do
(
ctx
context
.
Context
,
f
func
()
error
)
error
{
ch
:=
make
(
chan
error
)
go
func
()
{
ch
<-
f
()
}()
go
func
()
{
select
{
case
<-
ctx
.
Done
()
:
case
ch
<-
f
()
:
}
}()
select
{
case
<-
ctx
.
Done
()
:
return
ctx
.
Err
()
...
...
This diff is collapsed.
Click to expand it.
util/do_test.go
View file @
97e11c7d
...
...
@@ -4,7 +4,7 @@ import (
"errors"
"testing"
"code.google.com/p/go.net/context"
"
github.com/jbenet/go-ipfs/Godeps/_workspace/src/
code.google.com/p/go.net/context"
)
func
TestDoReturnsContextErr
(
t
*
testing
.
T
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment