diff options
| author | ruki <[email protected]> | 2020-01-28 23:33:29 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-01-28 15:20:56 +0800 |
| commit | 0a71ffa31bc0d30ab3f807253d0122b784714899 (patch) | |
| tree | 6e187c4f2c6f5871c7dcf292b84a492ebda95afd /xmake/core/base/process.lua | |
| parent | 16602dc6bb192eb9b0a3ddfb0cf4df32e7c2c80a (diff) | |
add process:cproc
Diffstat (limited to 'xmake/core/base/process.lua')
| -rw-r--r-- | xmake/core/base/process.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xmake/core/base/process.lua b/xmake/core/base/process.lua index 65be506a9..68d02466b 100644 --- a/xmake/core/base/process.lua +++ b/xmake/core/base/process.lua @@ -53,6 +53,11 @@ function _subprocess:name() return self._NAME end +-- get cdata of process +function _subprocess:cproc() + return self._PROC +end + -- wait subprocess -- -- @param timeout the timeout |
