man strtoul STRTOUL(3) Linux Programmer's Manual STRTOUL(3)NAME strtoul, strtoull - convert a string to an unsigned long integer.SYNOPSIS #include unsigned long int strtoul(const char *nptr, char **endptr, int base); unsigned long long int strtoull(const char *nptr, char **endptr, int base);DESCRIPTION The strtoul() function converts the initial part of the string in nptr to an unsigned long int..
(2009/09/27 15:16 작성) 출처: FALiNUX FORUM shmget() 공유 메모리 생성장길석http://forum.falinux.com/zbxe/index.php?document_srl=4234562008.01.28 15:18:14 (*.105.125.81)설명shmget() 함수는 공유 메모리를 생성합니다.공유 메모리는 단어 뜻에서 알 수 있듯이 하나의 프로세스에서가 아니라 여러 프로세스가 함께 사용하는 메모리를 말합니다. 이 공유 메모리를 이용하면 프로세스끼리 통신을 할 수 있으며, 같은 데이터를 공유할 수 있습니다.이렇게 같은 메모리 영역을 공유하기 위해서는 공유 메모리를 생성한 후에 프로세스의 자신의 영역에 첨부를 한 후에 마치 자신의 메모리를 사용하듯 사용합니다.즉, 공유 메모..