summaryrefslogtreecommitdiff
path: root/sal/osl/w32/process.c
diff options
context:
space:
mode:
authorOliver Braun <obr@openoffice.org>2001-06-08 12:59:51 +0000
committerOliver Braun <obr@openoffice.org>2001-06-08 12:59:51 +0000
commit2ad023906439164a10e7e2bbd6ae85f0e8958efe (patch)
treea775b17f50b9a79fe8cefbb1ce4f5c49dca97df7 /sal/osl/w32/process.c
parent7c2bdcc5ed474d807b836fc9614534d42bcbac90 (diff)
#87132#removed obsolete parameter in executeProcess
Diffstat (limited to 'sal/osl/w32/process.c')
-rw-r--r--sal/osl/w32/process.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/sal/osl/w32/process.c b/sal/osl/w32/process.c
index 1eb860da7589..a10bd1610278 100644
--- a/sal/osl/w32/process.c
+++ b/sal/osl/w32/process.c
@@ -2,9 +2,9 @@
*
* $RCSfile: process.c,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obr $ $Date: 2001-06-07 09:24:06 $
+ * last change: $Author: obr $ $Date: 2001-06-08 13:58:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -114,7 +114,6 @@ oslProcessError SAL_CALL osl_executeProcess(rtl_uString *ustrImageName,
rtl_uString *ustrWorkDir,
rtl_uString *ustrEnvironmentVars[],
sal_uInt32 nEnvironmentVars,
- oslIOResource* pResources,
oslProcess *pProcess)
{
sal_Int32 nIndex;
@@ -324,15 +323,6 @@ oslProcessError SAL_CALL osl_executeProcess(rtl_uString *ustrImageName,
CloseHandle( processInfo.hThread );
- if (pResources)
- {
- // not needed anymore
- OSL_ASSERT( 0 );
-// pipe = openPipe(procinfo.dwProcessId);
-
-// sendIOResources(pipe, pResources, procinfo.hProcess);
- }
-
pProcImpl = rtl_allocateMemory( sizeof(oslProcessImpl) );
pProcImpl->m_hProcess = processInfo.hProcess;
pProcImpl->m_IdProcess = processInfo.dwProcessId;