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

Side by Side Diff: plan9/race.go

Issue 126960043: code review 126960043: go.sys: copy files from syscall package to go.sys/{plan... (Closed)
Patch Set: diff -r 89b705e036f489a14b4d11c6e025ea61a53bb735 https://code.google.com/p/go.sys Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « plan9/mksysnum_plan9.sh ('k') | plan9/race0.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build race
6
7 package syscall
8
9 import (
10 "runtime"
11 "unsafe"
12 )
13
14 const raceenabled = true
15
16 func raceAcquire(addr unsafe.Pointer) {
17 runtime.RaceAcquire(addr)
18 }
19
20 func raceReleaseMerge(addr unsafe.Pointer) {
21 runtime.RaceReleaseMerge(addr)
22 }
23
24 func raceReadRange(addr unsafe.Pointer, len int) {
25 runtime.RaceReadRange(addr, len)
26 }
27
28 func raceWriteRange(addr unsafe.Pointer, len int) {
29 runtime.RaceWriteRange(addr, len)
30 }
OLDNEW
« no previous file with comments | « plan9/mksysnum_plan9.sh ('k') | plan9/race0.go » ('j') | no next file with comments »

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