Skip to content

메모리 초기화

디케 2010.08.14 23:23 조회 수 : 29455

CleanMem v1.4.2: 일정시간마다 메모리 초기화


MemClean.exe


Memory Cleaner
Downloads: 75,000+Facebook Fan Page

Executable name................. MemClean.exe
Version............................... 1.40
Last Updated....................... 08 August, 2010
File Size.............................. 399KB

Windows............................. XP/2003/Vista/2008/7
Administrative account......... Required

Download Memory Cleaner now!    


Tech-savvy folk are divided over how useful memory cleaning tools can be because Windows (Vista upwards at least) manage memory reasonably well. Most memory cleaning tools are not very useful because many of them use ill-advised techniques that are only relevant to older versions of Windows (pre-Vista).

MemoryCleaner is considerably better because it uses functions built into Windows to judiciously free memory - with no performance impact whatsoever. You can now access Memory Cleaner functions from the tray icon without having to open up the main window. The cleaning prodecures are both silent and the only alert you will see is the amount of RAM recovered briefly displayed in the window.

If you find your RAM usage exceeding 60% regularly, then MemoryCleaner is an absolute must have.


Feature List 
  1. Trims processes' working set.
  2. Clears system cache.
  3. Monitors RAM usage and reports minimum, maximum and average (true average, not (min+max)/2).
  4. Reports Pagefile and virtual memory usage.


http://donghaerang.com/1101


▶ 설치 버전

ㆍSetup File Info: (1.73 MB)  (MD5 Hash - B313574C4CE6DC54D93CC8605CF7570D)
ㆍ다운로드(from 제작처 다운로드 페이지):http://www.pcwintech.com/files/setups/cleanmem_v1.4.2_setup.exe
ㆍ다운로드(from Majorgeeks.com): http://www.majorgeeks.com/CleanMem_d5993.html
ㆍ다운로드(from 동해랑):  CleanMem v1.4.2 Freeware.exe


▶ 무설치 버전
ㆍ다운로드(from 제작처 다운로드 페이지):http://www.pcwintech.com/files/setups/cleanmem_v.1.4.2.zip
ㆍ다운로드(from 동해랑):  CleanMem v1.4.2 Freeware.zip
※ Windows 7에서는 무설치 버전이 제대로 작동하지 않는다는 제보(본 게시물의 댓글 참조)가 있으니 참고하시기 바랍니다.



메모리 초기화 함수

memset함수
기능 : 메모리 영역을 초기화.
기본형 : void *memset(void *s,int c,size_t n);
s : 메모리 영역에 대한 포인터, c : 초기화값, n : 초기화 되기 원하는 크기
반환값 : s에 대한 포인터를 반환. 실패하면 NULL을 반환.
헤더파일 : <string.h>



#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
{
    int *ptr;
    if((ptr=(int *)malloc(10)) == NULL)
        exit(1);
    memset(ptr, 'a', 9);
    ptr[9] = '\0';
    printf("%s\n", ptr);
    free(ptr);
}


http://onpc.kr/?document_srl=2859759




http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소