Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bb648917
Commit
bb648917
authored
Oct 21, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_cexit should call the atexit functions.
parent
c0b79e0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
exit.c
dlls/msvcrt/exit.c
+4
-4
No files found.
dlls/msvcrt/exit.c
View file @
bb648917
...
@@ -190,7 +190,9 @@ void MSVCRT__c_exit(void)
...
@@ -190,7 +190,9 @@ void MSVCRT__c_exit(void)
void
MSVCRT__cexit
(
void
)
void
MSVCRT__cexit
(
void
)
{
{
TRACE
(
"(void)
\n
"
);
TRACE
(
"(void)
\n
"
);
/* All cleanup is done on DLL detach; Return to caller */
LOCK_EXIT
;
__MSVCRT__call_atexit
();
UNLOCK_EXIT
;
}
}
/*********************************************************************
/*********************************************************************
...
@@ -233,9 +235,7 @@ MSVCRT__onexit_t MSVCRT__onexit(MSVCRT__onexit_t func)
...
@@ -233,9 +235,7 @@ MSVCRT__onexit_t MSVCRT__onexit(MSVCRT__onexit_t func)
void
MSVCRT_exit
(
int
exitcode
)
void
MSVCRT_exit
(
int
exitcode
)
{
{
TRACE
(
"(%d)
\n
"
,
exitcode
);
TRACE
(
"(%d)
\n
"
,
exitcode
);
LOCK_EXIT
;
MSVCRT__cexit
();
__MSVCRT__call_atexit
();
UNLOCK_EXIT
;
ExitProcess
(
exitcode
);
ExitProcess
(
exitcode
);
}
}
...
...
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