Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a968a1ad
Commit
a968a1ad
authored
Jan 18, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Return child exit code in _pclose function.
Based on a patch by Borut Ražem.
parent
7f4e1c65
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
2 deletions
+72
-2
main.c
dlls/msvcrt/main.c
+1
-0
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-0
process.c
dlls/msvcrt/process.c
+70
-2
No files found.
dlls/msvcrt/main.c
View file @
a968a1ad
...
@@ -118,6 +118,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
...
@@ -118,6 +118,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
case
DLL_THREAD_ATTACH
:
case
DLL_THREAD_ATTACH
:
break
;
break
;
case
DLL_PROCESS_DETACH
:
case
DLL_PROCESS_DETACH
:
msvcrt_free_popen_data
();
msvcrt_free_io
();
msvcrt_free_io
();
msvcrt_free_mt_locks
();
msvcrt_free_mt_locks
();
msvcrt_free_console
();
msvcrt_free_console
();
...
...
dlls/msvcrt/msvcrt.h
View file @
a968a1ad
...
@@ -269,6 +269,7 @@ extern void msvcrt_init_args(void) DECLSPEC_HIDDEN;
...
@@ -269,6 +269,7 @@ extern void msvcrt_init_args(void) DECLSPEC_HIDDEN;
extern
void
msvcrt_free_args
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_args
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_init_signals
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_init_signals
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_signals
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_signals
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_popen_data
(
void
)
DECLSPEC_HIDDEN
;
extern
unsigned
msvcrt_create_io_inherit_block
(
WORD
*
,
BYTE
**
)
DECLSPEC_HIDDEN
;
extern
unsigned
msvcrt_create_io_inherit_block
(
WORD
*
,
BYTE
**
)
DECLSPEC_HIDDEN
;
...
...
dlls/msvcrt/process.c
View file @
a968a1ad
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
#include <stdarg.h>
#include <stdarg.h>
#include "msvcrt.h"
#include "msvcrt.h"
#include "mtdll.h"
#include "wine/debug.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
...
@@ -1022,6 +1023,17 @@ MSVCRT_intptr_t CDECL _wspawnvp(int flags, const MSVCRT_wchar_t* name, const MSV
...
@@ -1022,6 +1023,17 @@ MSVCRT_intptr_t CDECL _wspawnvp(int flags, const MSVCRT_wchar_t* name, const MSV
return
MSVCRT__wspawnvpe
(
flags
,
name
,
argv
,
NULL
);
return
MSVCRT__wspawnvpe
(
flags
,
name
,
argv
,
NULL
);
}
}
static
struct
popen_handle
{
MSVCRT_FILE
*
f
;
HANDLE
proc
;
}
*
popen_handles
;
static
DWORD
popen_handles_size
;
void
msvcrt_free_popen_data
(
void
)
{
MSVCRT_free
(
popen_handles
);
}
/*********************************************************************
/*********************************************************************
* _wpopen (MSVCRT.@)
* _wpopen (MSVCRT.@)
*
*
...
@@ -1036,6 +1048,8 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
...
@@ -1036,6 +1048,8 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
MSVCRT_wchar_t
*
comspec
,
*
fullcmd
;
MSVCRT_wchar_t
*
comspec
,
*
fullcmd
;
unsigned
int
len
;
unsigned
int
len
;
static
const
MSVCRT_wchar_t
flag
[]
=
{
' '
,
'/'
,
'c'
,
' '
,
0
};
static
const
MSVCRT_wchar_t
flag
[]
=
{
' '
,
'/'
,
'c'
,
' '
,
0
};
struct
popen_handle
*
container
;
DWORD
i
;
TRACE
(
"(command=%s, mode=%s)
\n
"
,
debugstr_w
(
command
),
debugstr_w
(
mode
));
TRACE
(
"(command=%s, mode=%s)
\n
"
,
debugstr_w
(
command
),
debugstr_w
(
mode
));
...
@@ -1069,6 +1083,25 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
...
@@ -1069,6 +1083,25 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
fdToDup
=
readPipe
?
1
:
0
;
fdToDup
=
readPipe
?
1
:
0
;
fdToOpen
=
readPipe
?
0
:
1
;
fdToOpen
=
readPipe
?
0
:
1
;
_mlock
(
_POPEN_LOCK
);
for
(
i
=
0
;
i
<
popen_handles_size
;
i
++
)
{
if
(
!
popen_handles
[
i
].
f
)
break
;
}
if
(
i
==
popen_handles_size
)
{
i
=
(
popen_handles_size
?
popen_handles_size
*
2
:
8
);
container
=
MSVCRT_realloc
(
popen_handles
,
i
*
sizeof
(
*
container
));
if
(
!
container
)
goto
error
;
popen_handles
=
container
;
container
=
popen_handles
+
popen_handles_size
;
memset
(
container
,
0
,
(
i
-
popen_handles_size
)
*
sizeof
(
*
container
));
popen_handles_size
=
i
;
}
else
container
=
popen_handles
+
i
;
if
((
fdStdHandle
=
MSVCRT__dup
(
fdToDup
))
==
-
1
)
if
((
fdStdHandle
=
MSVCRT__dup
(
fdToDup
))
==
-
1
)
goto
error
;
goto
error
;
if
(
MSVCRT__dup2
(
fds
[
fdToDup
],
fdToDup
)
!=
0
)
if
(
MSVCRT__dup2
(
fds
[
fdToDup
],
fdToDup
)
!=
0
)
...
@@ -1089,7 +1122,8 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
...
@@ -1089,7 +1122,8 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
strcatW
(
fullcmd
,
flag
);
strcatW
(
fullcmd
,
flag
);
strcatW
(
fullcmd
,
command
);
strcatW
(
fullcmd
,
command
);
if
(
msvcrt_spawn
(
MSVCRT__P_NOWAIT
,
comspec
,
fullcmd
,
NULL
,
1
)
==
-
1
)
if
((
container
->
proc
=
(
HANDLE
)
msvcrt_spawn
(
MSVCRT__P_NOWAIT
,
comspec
,
fullcmd
,
NULL
,
1
))
==
INVALID_HANDLE_VALUE
)
{
{
MSVCRT__close
(
fds
[
fdToOpen
]);
MSVCRT__close
(
fds
[
fdToOpen
]);
ret
=
NULL
;
ret
=
NULL
;
...
@@ -1099,7 +1133,9 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
...
@@ -1099,7 +1133,9 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
ret
=
MSVCRT__wfdopen
(
fds
[
fdToOpen
],
mode
);
ret
=
MSVCRT__wfdopen
(
fds
[
fdToOpen
],
mode
);
if
(
!
ret
)
if
(
!
ret
)
MSVCRT__close
(
fds
[
fdToOpen
]);
MSVCRT__close
(
fds
[
fdToOpen
]);
container
->
f
=
ret
;
}
}
_munlock
(
_POPEN_LOCK
);
HeapFree
(
GetProcessHeap
(),
0
,
comspec
);
HeapFree
(
GetProcessHeap
(),
0
,
comspec
);
HeapFree
(
GetProcessHeap
(),
0
,
fullcmd
);
HeapFree
(
GetProcessHeap
(),
0
,
fullcmd
);
MSVCRT__dup2
(
fdStdHandle
,
fdToDup
);
MSVCRT__dup2
(
fdStdHandle
,
fdToDup
);
...
@@ -1107,6 +1143,7 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
...
@@ -1107,6 +1143,7 @@ MSVCRT_FILE* CDECL MSVCRT__wpopen(const MSVCRT_wchar_t* command, const MSVCRT_wc
return
ret
;
return
ret
;
error:
error:
_munlock
(
_POPEN_LOCK
);
if
(
fdStdHandle
!=
-
1
)
MSVCRT__close
(
fdStdHandle
);
if
(
fdStdHandle
!=
-
1
)
MSVCRT__close
(
fdStdHandle
);
MSVCRT__close
(
fds
[
0
]);
MSVCRT__close
(
fds
[
0
]);
MSVCRT__close
(
fds
[
1
]);
MSVCRT__close
(
fds
[
1
]);
...
@@ -1145,7 +1182,38 @@ MSVCRT_FILE* CDECL MSVCRT__popen(const char* command, const char* mode)
...
@@ -1145,7 +1182,38 @@ MSVCRT_FILE* CDECL MSVCRT__popen(const char* command, const char* mode)
*/
*/
int
CDECL
MSVCRT__pclose
(
MSVCRT_FILE
*
file
)
int
CDECL
MSVCRT__pclose
(
MSVCRT_FILE
*
file
)
{
{
return
MSVCRT_fclose
(
file
);
HANDLE
h
;
DWORD
i
;
if
(
!
MSVCRT_CHECK_PMT
(
file
!=
NULL
))
return
-
1
;
_mlock
(
_POPEN_LOCK
);
for
(
i
=
0
;
i
<
popen_handles_size
;
i
++
)
{
if
(
popen_handles
[
i
].
f
==
file
)
break
;
}
if
(
i
==
popen_handles_size
)
{
_munlock
(
_POPEN_LOCK
);
*
MSVCRT__errno
()
=
MSVCRT_EBADF
;
return
-
1
;
}
h
=
popen_handles
[
i
].
proc
;
popen_handles
[
i
].
f
=
NULL
;
_munlock
(
_POPEN_LOCK
);
MSVCRT_fclose
(
file
);
if
(
WaitForSingleObject
(
h
,
INFINITE
)
==
WAIT_FAILED
||
!
GetExitCodeProcess
(
h
,
&
i
))
{
msvcrt_set_errno
(
GetLastError
());
CloseHandle
(
h
);
return
-
1
;
}
CloseHandle
(
h
);
return
i
;
}
}
/*********************************************************************
/*********************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment