Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
9f77e7ea
Commit
9f77e7ea
authored
Feb 12, 2010
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: dummy gettime for mingw/386.
Fixes #598. R=adg CC=golang-dev
https://golang.org/cl/206089
parent
a75ebe19
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
src/pkg/runtime/mingw/386/sys.s
src/pkg/runtime/mingw/386/sys.s
+9
-0
No files found.
src/pkg/runtime/mingw/386/sys.s
View file @
9f77e7ea
...
...
@@ -85,3 +85,12 @@ TEXT setldt(SB),7,$0
MOVL
address
+
4
(
FP
),
CX
MOVL
CX
,
0x2c
(
FS
)
RET
//
for
now
,
return
0
,
0
.
only
used
for
internal
performance
monitoring
.
TEXT
gettime
(
SB
),7,$0
MOVL
sec
+
0
(
FP
),
DI
MOVL
$
0
,
(
DI
)
MOVL
$
0
,
4
(
DI
)
//
zero
extend
32
->
64
bits
MOVL
usec
+
4
(
FP
),
DI
MOVL
$
0
,
(
DI
)
RET
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