Cygwin: drop __stdcall from close_all_files
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
b2cb7c090e
commit
e20c0f2ca7
|
@ -81,7 +81,7 @@ static int __stdcall mknod_worker (const char *, mode_t, mode_t, _major_t,
|
||||||
but never call close. This function is called by _exit to
|
but never call close. This function is called by _exit to
|
||||||
ensure we don't leave any such files lying around. */
|
ensure we don't leave any such files lying around. */
|
||||||
|
|
||||||
void __stdcall
|
void
|
||||||
close_all_files (bool norelease)
|
close_all_files (bool norelease)
|
||||||
{
|
{
|
||||||
cygheap->fdtab.lock ();
|
cygheap->fdtab.lock ();
|
||||||
|
|
|
@ -179,7 +179,7 @@ extern struct per_process_cxx_malloc default_cygwin_cxx_malloc;
|
||||||
void events_init ();
|
void events_init ();
|
||||||
|
|
||||||
int chmod_device (class path_conv& pc, mode_t mode);
|
int chmod_device (class path_conv& pc, mode_t mode);
|
||||||
void __stdcall close_all_files (bool = false);
|
void close_all_files (bool = false);
|
||||||
|
|
||||||
/* debug_on_trap support. see exceptions.cc:try_to_debug() */
|
/* debug_on_trap support. see exceptions.cc:try_to_debug() */
|
||||||
extern "C" void error_start_init (const char*);
|
extern "C" void error_start_init (const char*);
|
||||||
|
|
Loading…
Reference in New Issue