Wrap too-long comment lines.
authorDavin McCall <davmac@davmac.org>
Fri, 9 Nov 2018 10:20:42 +0000 (10:20 +0000)
committerDavin McCall <davmac@davmac.org>
Fri, 9 Nov 2018 10:38:29 +0000 (10:38 +0000)
src/includes/baseproc-sys.h
src/includes/proc-service.h
src/proc-service.cc

index 14166bee275b2994dc8470655cb776cfdbb1d814..4c655139f79f57d812b77a68812145d14a201098 100644 (file)
@@ -1,8 +1,8 @@
 /*
  * This header implements a namespace, bp_sys, which wraps various system calls used by baseproc-service.cc.
  *
- * When running tests, another header is substituted in place of this one. The substitute provides mocks/stubs
- * for the functions, to avoid calling the real functions and thus allow for unit-level testing.
+ * When running tests, another header is substituted in place of this one. The substitute provides
+ * mocks/stubs for the functions, to avoid calling the real functions and thus allow for unit-level testing.
  */
 
 #ifndef BPSYS_INCLUDED
index a0b2f5c211935c39c6bb1abf82cef870248855bd..a8ad6fba95206ac7e9d04aae096046b6fa843124 100644 (file)
@@ -8,7 +8,8 @@
 
 // Given a string and a list of pairs of (start,end) indices for each argument in that string,
 // store a null terminator for the argument. Return a `char *` vector containing the beginning
-// of each argument and a trailing nullptr. (The returned array is invalidated if the string is later modified).
+// of each argument and a trailing nullptr. (The returned array is invalidated if the string is later
+// modified).
 std::vector<const char *> separate_args(std::string &s,
         const std::list<std::pair<unsigned,unsigned>> &arg_indices);
 
@@ -42,10 +43,12 @@ class base_process_service : public service_record
 
     protected:
     string program_name;          // storage for program/script and arguments
-    std::vector<const char *> exec_arg_parts; // pointer to each argument/part of the program_name, and nullptr
+    // pointer to each argument/part of the program_name, and nullptr:
+    std::vector<const char *> exec_arg_parts;
 
     string stop_command;          // storage for stop program/script and arguments
-    std::vector<const char *> stop_arg_parts; // pointer to each argument/part of the stop_command, and nullptr
+    // pointer to each argument/part of the stop_command, and nullptr:
+    std::vector<const char *> stop_arg_parts;
 
     string working_dir;       // working directory (or empty)
 
index 99e0f1e5c31f50ad2c3ec4606307dae4d42ad720..2aa91ac0f05e2863eb484ea4258c0da32ffa5695 100644 (file)
@@ -17,7 +17,8 @@
 
 // Given a string and a list of pairs of (start,end) indices for each argument in that string,
 // store a null terminator for the argument. Return a `char *` vector containing the beginning
-// of each argument and a trailing nullptr. (The returned array is invalidated if the string is later modified).
+// of each argument and a trailing nullptr. (The returned array is invalidated if the string is
+// later modified).
 std::vector<const char *> separate_args(std::string &s,
         const std::list<std::pair<unsigned,unsigned>> &arg_indices)
 {