Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
3a4a581c
Commit
3a4a581c
authored
Jun 27, 2011
by
Dmitriy Vyukov
Committed by
Russ Cox
Jun 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync: add benchmark for Once.
R=r, rsc CC=golang-dev
https://golang.org/cl/4650054
parent
6bcfb951
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
once_test.go
src/pkg/sync/once_test.go
+25
-0
No files found.
src/pkg/sync/once_test.go
View file @
3a4a581c
...
@@ -6,6 +6,8 @@ package sync_test
...
@@ -6,6 +6,8 @@ package sync_test
import
(
import
(
.
"sync"
.
"sync"
"sync/atomic"
"runtime"
"testing"
"testing"
)
)
...
@@ -35,3 +37,26 @@ func TestOnce(t *testing.T) {
...
@@ -35,3 +37,26 @@ func TestOnce(t *testing.T) {
t
.
Errorf
(
"once failed: %d is not 1"
,
*
o
)
t
.
Errorf
(
"once failed: %d is not 1"
,
*
o
)
}
}
}
}
func
BenchmarkOnce
(
b
*
testing
.
B
)
{
const
CallsPerSched
=
1000
procs
:=
runtime
.
GOMAXPROCS
(
-
1
)
N
:=
int32
(
b
.
N
/
CallsPerSched
)
var
once
Once
f
:=
func
()
{}
c
:=
make
(
chan
bool
,
procs
)
for
p
:=
0
;
p
<
procs
;
p
++
{
go
func
()
{
for
atomic
.
AddInt32
(
&
N
,
-
1
)
>=
0
{
runtime
.
Gosched
()
for
g
:=
0
;
g
<
CallsPerSched
;
g
++
{
once
.
Do
(
f
)
}
}
c
<-
true
}()
}
for
p
:=
0
;
p
<
procs
;
p
++
{
<-
c
}
}
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