summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voß <thomas.voss@rub.de>2011-12-12 09:44:51 +0100
committerThomas Voß <thomas.voss@rub.de>2011-12-12 09:44:51 +0100
commitbb43c8271894e29a5818fadacde9bb459a55e6e1 (patch)
treeec05202e1b38aa033ef0f71c99d97a32f9756857
parent6383f42858833f9695580f365352df30f4e33fb2 (diff)
Referenced manpage of execvp in documentation.
-rw-r--r--include/xorg/gtest/process.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/xorg/gtest/process.h b/include/xorg/gtest/process.h
index 8cdd71f..3f022ce 100644
--- a/include/xorg/gtest/process.h
+++ b/include/xorg/gtest/process.h
@@ -63,6 +63,8 @@ class Process {
/**
* Starts a program as a child process.
*
+ * See 'man execvp' for further information on the variadic argument list.
+ *
* @param program The program to start.
* @param args Variadic list of arguments passed to the program.
*
@@ -74,6 +76,7 @@ class Process {
* Starts a program as a child process.
*
* Takes a variadic list of arguments passed to the program.
+ * See 'man execvp' for further information on the variadic argument list.
*
* @param program The program to start.
*
@@ -136,7 +139,7 @@ class Process {
Process& operator=(const Process&);
};
-} // xorg
} // testing
+} // xorg
#endif // XORG_GTEST_PROCESS_H