Jump to content

Implications of EmptyWorkingSet


Recommended Posts

I'm familiar with the _ReduceMemory function that's all over the forums that follows:

Func _ReduceMemory($i_PID = -1)
    If $i_PID <> -1 Then
        Local $ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1F0FFF, 'int', False, 'int', $i_PID)
        Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', $ai_Handle[0])
        DllCall('kernel32.dll', 'int', 'CloseHandle', 'int', $ai_Handle[0])
    Else
        Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', -1)
    EndIf

    Return $ai_Return[0]
EndFunc   ;==>_ReduceMemoryoÝ÷ Ø̪¹ë-â³
.Úîx§¹Çzj+ɨ{-jY^Æ+-x)®²Ç¬­è.ªåÊX¤yëÞ¯.´±ç(Û)­ëÖ§ÊÊ+¶ìµ¦â+.zÄáyÊxýv»§z÷«Ë­,'vȬjëh×6$list = ProcessList()
For $w = 1 to $list[0][0]
  _ReduceMemory($list[$w][1])
Next

I've Googled it and I can't really find anything to say it would, I just wanted to get the community's input on it. :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...