Skip to content

Commit

Permalink
Fix documentation in mythsystem.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Jun 19, 2012
1 parent 70bba77 commit db21385
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions mythtv/libs/libmythbase/mythsystem.h
Expand Up @@ -7,22 +7,23 @@

typedef enum MythSystemMask {
kMSNone = 0x00000000,
kMSDontBlockInputDevs = 0x00000001, //< avoid blocking LIRC & Joystick Menu
kMSDontDisableDrawing = 0x00000002, //< avoid disabling UI drawing
kMSRunBackground = 0x00000004, //< run child in the background
kMSProcessEvents = 0x00000008, //< process events while waiting
kMSInUi = 0x00000010, //< the parent is in the UI
kMSStdIn = 0x00000020, //< allow access to stdin
kMSStdOut = 0x00000040, //< allow access to stdout
kMSStdErr = 0x00000080, //< allow access to stderr
kMSBuffered = 0x00000100, //< buffer the IO channels
kMSRunShell = 0x00000200, //< run process through shell
kMSNoRunShell = 0x00000400, //< do NOT run process through shell
kMSAnonLog = 0x00000800, //< anonymize the logs
kMSAbortOnJump = 0x00001000, //< abort this process on a jumppoint
kMSSetPGID = 0x00002000, //< set the process group id
kMSAutoCleanup = 0x00004000, //< automatically delete if backgrounded
kMSLowExitVal = 0x00008000, //< allow exit values 0-127 only
kMSDontBlockInputDevs = 0x00000001, ///< avoid blocking LIRC & Joystick Menu
kMSDontDisableDrawing = 0x00000002, ///< avoid disabling UI drawing
kMSRunBackground = 0x00000004, ///< run child in the background
kMSProcessEvents = 0x00000008, ///< process events while waiting
kMSInUi = 0x00000010, ///< the parent is in the UI
kMSStdIn = 0x00000020, ///< allow access to stdin
kMSStdOut = 0x00000040, ///< allow access to stdout
kMSStdErr = 0x00000080, ///< allow access to stderr
kMSBuffered = 0x00000100, ///< buffer the IO channels
kMSRunShell = 0x00000200, ///< run process through shell
kMSNoRunShell = 0x00000400, ///< do NOT run process through shell
kMSAnonLog = 0x00000800, ///< anonymize the logs
kMSAbortOnJump = 0x00001000, ///< abort this process on a jumppoint
kMSSetPGID = 0x00002000, ///< set the process group id
kMSAutoCleanup = 0x00004000, ///< automatically delete if
/// backgrounded
kMSLowExitVal = 0x00008000, ///< allow exit values 0-127 only
} MythSystemFlag;

#ifdef __cplusplus
Expand Down

0 comments on commit db21385

Please sign in to comment.