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

Delta Between Two Patch Sets: program/proxyrpc/proxyrpc.go

Issue 86370043: code review 86370043: program: trace multi-threaded programs. (Closed)
Left Patch Set: Created 9 years, 11 months ago
Right Patch Set: diff -r f3347973b1cb https://code.google.com/p/ogle Created 9 years, 11 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:
Right: Side by side diff | Download
« no previous file with change/comment | « program/program.go ('k') | program/server/ptrace.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 proxyrpc defines the types used to represent the RPC calls 5 // Package proxyrpc defines the types used to represent the RPC calls
6 // used to the ogleproxy. 6 // used to the ogleproxy.
7 package proxyrpc 7 package proxyrpc
8 8
9 import "code.google.com/p/ogle/program" 9 import "code.google.com/p/ogle/program"
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 type OpenRequest struct { 45 type OpenRequest struct {
46 Name string 46 Name string
47 Mode string 47 Mode string
48 } 48 }
49 49
50 type OpenResponse struct { 50 type OpenResponse struct {
51 FD int 51 FD int
52 } 52 }
53 53
54 type RunRequest struct { 54 type RunRequest struct {
55 Start bool
56 } 55 }
57 56
58 type RunResponse struct { 57 type RunResponse struct {
59 Status program.Status 58 Status program.Status
60 } 59 }
61 60
62 type ResumeRequest struct { 61 type ResumeRequest struct {
63 } 62 }
64 63
65 type ResumeResponse struct { 64 type ResumeResponse struct {
(...skipping 15 matching lines...) Expand all
81 Result []string 80 Result []string
82 } 81 }
83 82
84 type FramesRequest struct { 83 type FramesRequest struct {
85 Count int 84 Count int
86 } 85 }
87 86
88 type FramesResponse struct { 87 type FramesResponse struct {
89 Frames []program.Frame 88 Frames []program.Frame
90 } 89 }
LEFTRIGHT

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