summaryrefslogtreecommitdiffstats
path: root/include/raul/Process.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/raul/Process.hpp')
-rw-r--r--include/raul/Process.hpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/include/raul/Process.hpp b/include/raul/Process.hpp
index b05b038..085ed8b 100644
--- a/include/raul/Process.hpp
+++ b/include/raul/Process.hpp
@@ -23,18 +23,20 @@
namespace raul {
-/** A child process.
- *
- * \ingroup raul
- */
+/**
+ A child process.
+
+ @ingroup raul
+*/
class Process : Noncopyable
{
public:
- /** Launch a sub process.
- *
- * @param argv List of arguments, where argv[0] is the command name.
- * @return True on success.
- */
+ /**
+ Launch a sub process.
+
+ @param argv List of arguments, where argv[0] is the command name.
+ @return True on success.
+ */
static bool launch(const char* const argv[])
{
// Use the same double fork() trick as JACK to prevent zombie children