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

Side by Side Diff: program/program.go

Issue 78530044: code review 78530044: ogle/program: first cut of breakpoint support. (Closed)
Patch Set: diff -r ad2f0964d3f5 https://code.google.com/p/ogle Created 10 years 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 | « program/client/client.go ('k') | program/proxyrpc/proxyrpc.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Go Authors. All rights reserved. 1 // Copyright 2014 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // Package program provides the portable interface to a program being debugged. 5 // Package program provides the portable interface to a program being debugged.
6 package program 6 package program
7 7
8 import ( 8 import (
9 "io" 9 "io"
10 ) 10 )
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // random access is a far more common pattern for things like symbol tables, 80 // random access is a far more common pattern for things like symbol tables,
81 // and because enormous address space of virtual memory makes routines 81 // and because enormous address space of virtual memory makes routines
82 // like io.Copy dangerous. 82 // like io.Copy dangerous.
83 type File interface { 83 type File interface {
84 io.ReaderAt 84 io.ReaderAt
85 io.WriterAt 85 io.WriterAt
86 io.Closer 86 io.Closer
87 } 87 }
88 88
89 type Status struct { 89 type Status struct {
90 » // TBD 90 » PC, SP uint64
91 } 91 }
OLDNEW
« no previous file with comments | « program/client/client.go ('k') | program/proxyrpc/proxyrpc.go » ('j') | no next file with comments »

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