Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: native_client_sdk/src/build_tools/debug_server/gdb_rsp/host.h

Issue 9909003: Fix some grammatical errors in native_client_sdk/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/debug_server/gdb_rsp/target.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 // This module provides an object for handling RSP responsibilities of 6 // This module provides an object for handling RSP responsibilities of
7 // the host side of the connection. The host behaves like a cache, and 7 // the host side of the connection. The host behaves like a cache, and
8 // is responsible for syncronization of state between the Target and Host. 8 // is responsible for syncronization of state between the Target and Host.
9 // For example, the Host is responsible for updating the thread context 9 // For example, the Host is responsible for updating the thread context
10 // before restarting the Target, and for updating it's internal array of 10 // before restarting the Target, and for updating its internal array of
11 // threads whenever the Target stops. 11 // threads whenever the Target stops.
12 12
13 #ifndef NATIVE_CLIENT_GDB_RSP_HOST_H_ 13 #ifndef NATIVE_CLIENT_GDB_RSP_HOST_H_
14 #define NATIVE_CLIENT_GDB_RSP_HOST_H_ 1 14 #define NATIVE_CLIENT_GDB_RSP_HOST_H_ 1
15 15
16 #include <map> 16 #include <map>
17 #include <string> 17 #include <string>
18 #include <vector> 18 #include <vector>
19 19
20 #include "native_client/src/debug_server/port/std_types.h" 20 #include "native_client/src/debug_server/port/std_types.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 ThreadMap_t threads_; 139 ThreadMap_t threads_;
140 int32_t lastSignal_; 140 int32_t lastSignal_;
141 Status status_; 141 Status status_;
142 }; 142 };
143 143
144 144
145 } // namespace gdb_rsp 145 } // namespace gdb_rsp
146 146
147 #endif // NATIVE_CLIENT_GDB_RSP_HOST_H_ 147 #endif // NATIVE_CLIENT_GDB_RSP_HOST_H_
148 148
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/debug_server/gdb_rsp/target.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698