Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
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
Adam Osuchowski
Kea
Commits
c9741c51
Commit
c9741c51
authored
Mar 02, 2015
by
Marcin Siodelski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[3706] Fixed the two typos in the comments of ProcessSpawn.
parent
15860010
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/lib/util/process_spawn.cc
src/lib/util/process_spawn.cc
+2
-2
src/lib/util/process_spawn.h
src/lib/util/process_spawn.h
+2
-2
No files found.
src/lib/util/process_spawn.cc
View file @
c9741c51
...
...
@@ -34,8 +34,8 @@ namespace util {
/// This class is made noncopyable so that we don't have attempts
/// to make multiple copies of an object. This avoid problems
/// with multiple copies of objects for a single global resource
/// such as the SIGCHLD signal handler.
In addition making it
/// noncopyable keeps the static check cod
d
from flagging the
/// such as the SIGCHLD signal handler. In addition making it
/// noncopyable keeps the static check cod
e
from flagging the
/// lack of a copy constructor as an issue.
class
ProcessSpawnImpl
:
boost
::
noncopyable
{
public:
...
...
src/lib/util/process_spawn.h
View file @
c9741c51
...
...
@@ -57,8 +57,8 @@ typedef std::vector<std::string> ProcessArgs;
/// This class is made noncopyable so that we don't have attempts
/// to make multiple copies of an object. This avoid problems
/// with multiple copies of objects for a single global resource
/// such as the SIGCHLD signal handler.
In addition making it
/// noncopyable keeps the static check cod
d
from flagging the
/// such as the SIGCHLD signal handler. In addition making it
/// noncopyable keeps the static check cod
e
from flagging the
/// lack of a copy constructor as an issue.
///
/// @todo The SIGCHLD handling logic should be moved to the @c SignalSet
...
...
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