본문 바로가기

오래된 흔적/MEMORY

(5)
Visual Leak Detector 비주얼 스튜디오에서 메모리 누수 나는거 잡아주는 프로그램.. 우왕.. 완젼 끝내준다.. 바운드 체커 안 돌려도 되겠딱.. http://www.codeproject.com/KB/applications/visualleakdetector.aspx
Process ID 얻기.. * GetCurrentProcessId : Retrieves the process identifier of the calling process DWORD WINAPI GetCurrentProcessId(void); *
특정 process가 차지하는 메모리 변화에 관하여.. ::: 필요개념 ::: * PSAPI Process Status Application Programming Interface provides a number of functions that return detailed information about the working set of a process #include set the external link in project setting : psapi.lib - PSAPI Functions * Working Set The working set of a process is the set of pages in the virtual address space of the process that are currently resident in physical me..
Windows Vista Kernel 관련 자료 Windows Vista 커널 속으로: 1부 Windows Vista 커널 속으로: 2부 Windows Vista 커널 속으로: 3부
메모리가 부족하면 컴퓨터가 느린 것은 왜 그런걸까? 메모리가 부족하면 컴퓨터가 느린 것은 왜 그런걸까? ★_IT_컬럼_ 2009/06/04 14:17 http://lifehack.kr/90048359776 이 포스트를 보낸곳 () 이는 가장 메모리라는 기능과 관계가 있다. 가상 메모리는 아주 간단하게 설명하자면, 메모리의 부족한 부분을 하드디스크로 채우는 구조를 말한다. 운영체제의 메모리 관리 기능은 프로세스(프로그램)마다 독립된 메모리 공간을 할당한다. 윈도우는 특히 하나의 프로세스에 대해서 4GB의 큰 공간을 할당한다. 4GB 메모리공간을 가진 프로세스는 동시에 얼마든지 실행하기 시작하면 상당한 양의 메모리를 소비한다. 일반적인 컴퓨터에 내장된 메모리 용량은 512MB에서 많아야 2GB정도이기 때문에 실행중의 프로세스의 가상 메모리의 내용을 모두 물리..