diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-05 08:27:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-05 08:28:38 +0100 |
commit | 90a3c0c0b46123a3647a53ddc942ba8614edb722 (patch) | |
tree | 5d5470eeaa2799a313bdf7a329943c3a61c8c6a1 /sal/osl | |
parent | 04f53f0714ed364177a740d9de52c497cda74064 (diff) |
ChildStatusProc needs to be extern "C".
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/process.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sal/osl/unx/process.cxx b/sal/osl/unx/process.cxx index c35a340c419b..57bc7171a06d 100644 --- a/sal/osl/unx/process.cxx +++ b/sal/osl/unx/process.cxx @@ -434,6 +434,8 @@ oslSocket osl_receiveResourcePipe(oslPipe pPipe) * *****************************************************************************/ +extern "C" { + static void ChildStatusProc(void *pData) { pid_t pid = -1; @@ -703,6 +705,8 @@ static void ChildStatusProc(void *pData) } } +} + /********************************************** osl_executeProcess_WithRedirectedIO *********************************************/ |