This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,10 @@ void PALShutdown( void );
42
42
Function:
43
43
PALCommonCleanup
44
44
45
- Utility function to free any resource used by the PAL.
45
+ Utility function to prepare for shutdown.
46
46
47
- Parameters :
48
- full_cleanup: TRUE: cleanup only what's needed and leave the rest
49
- to the OS process cleanup
50
- FALSE: full cleanup
51
47
--*/
52
- void PALCommonCleanup ( BOOL full_cleanup );
48
+ void PALCommonCleanup ();
53
49
54
50
extern Volatile < INT > init_count ;
55
51
Original file line number Diff line number Diff line change @@ -745,16 +745,11 @@ PAL_EntryPoint(
745
745
Function:
746
746
PALCommonCleanup
747
747
748
- Utility function to free any resource used by the PAL.
748
+ Utility function to prepare for shutdown.
749
749
750
- Parameters :
751
- step: selects the desired cleanup step
752
- full_cleanup: FALSE: cleanup only what's needed and leave the rest
753
- to the OS process cleanup
754
- TRUE: full cleanup
755
750
--*/
756
751
void
757
- PALCommonCleanup (BOOL full_cleanup )
752
+ PALCommonCleanup ()
758
753
{
759
754
static bool cleanupDone = false ;
760
755
Original file line number Diff line number Diff line change @@ -1401,7 +1401,7 @@ void PROCCleanupProcess(BOOL bTerminateUnconditionally)
1401
1401
/* Declare the beginning of shutdown */
1402
1402
PALSetShutdownIntent ();
1403
1403
1404
- PALCommonCleanup (FALSE );
1404
+ PALCommonCleanup ();
1405
1405
1406
1406
/* This must be called after PALCommonCleanup */
1407
1407
PALShutdown ();
You can’t perform that action at this time.
0 commit comments