X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ca5016d4ddae7f9a2d72a16326e9339f8d3e8748..d642db66a5efc82d374b813022c72ba88bc50839:/include/wx/process.h diff --git a/include/wx/process.h b/include/wx/process.h index 12d1dcce7c..5a893a7ed5 100644 --- a/include/wx/process.h +++ b/include/wx/process.h @@ -104,9 +104,18 @@ public: wxInputStream *errStream); #endif // wxUSE_STREAMS + // priority + // Sets the priority to the given value: see wxPRIORITY_XXX constants. + // + // NB: the priority can only be set before the process is created + void SetPriority(unsigned priority); + + // Get the current priority. + unsigned GetPriority() const { return m_priority; } + // implementation only - don't use! // -------------------------------- - + // needs to be public since it needs to be used from wxExecute() global func void SetPid(long pid) { m_pid = pid; } @@ -116,6 +125,8 @@ protected: int m_id; long m_pid; + unsigned m_priority; + #if wxUSE_STREAMS // these streams are connected to stdout, stderr and stdin of the child // process respectively (yes, m_inputStream corresponds to stdout -- very