태그>cprogramming(총 5개의 글)
'cprogramming' 관련 최근글
-
- apache module을 unit test
-
공부가 본업. by 언제나19|2013/10/23 19:24
에서는 그냥 포기했네. 에서는 2가지 방법이 있다고 한다.apache를 shared core로 build하기 시작할 때마다 apache를 start하기dlr에서는 1번으로 했나보네. 는 2번과 비슷한 것을 지원하는 apache module이 있나보다. 1번도 그냥 되는 건가보넹.https://code.goog..
- apache module을 unit test
-
- autotools unit test cutter
-
공부가 본업. by 언제나19|2013/10/23 18:06
autotools에서 기본적으로 지원하는 testsuite tool이 2개가 있나보다.http://www.gnu.org/software/automake/manual/html_node/Tests.html#Tests • Using the TAP test protocol: Integrating test scripts that use the TAP protocol• DejaGnu Tes..
- autotools unit test cutter
-
- apache module을 linux, mac에서 개발하기: autotools 이용
-
공부가 본업. by 언제나19|2013/10/08 18:24
c source code를 여러 개발 환경에서 이용하기 위해서target, host, ide가 다른 project 파일을 만들어야 하겠는데,Makefile을 만들어주는 tool은 autotools와 CMake가 있겠다. linux, mac에서 이용할 수 있어야 하고,mac에서는 주로 eclipse cdt를 이용할 ..
- apache module을 linux, mac에서 개발하기: autotools 이용
-
- ImageMagick ReadImage 이전에 SetImageOption 으로 loading siz..
-
공부가 본업. by 언제나19|2013/10/07 18:29
ImageMagick을 그냥 쓰면, 너무 큰 image를 처리할 때 memory가 모자라서, Out of memory로 죽을 때가 많다.ReadImage를 할 때, 작은 size로 sampling해서 load하도록 option을 주기. SetImageOption(image_info, "jpeg:size", "10..
- ImageMagick ReadImage 이전에 SetImageOption 으로 loading siz..
-
- C++ 기초플러스 정리-2
-
spec의 모바일 by spec|2009/08/25 15:58
3장. 데이터 처리 C+에 내장된 데이터형에는 기본형과 복합형이 있다. 기본형에는 정수를 표현할 수 있는 정수형과, 소수부가 있는 수를 표현할 수 있는 부동 소수점형으로 구분된다. 복합형은 4장에서 다루며 배열, 문자열, 포인터, 구조체와 같은 형이 있다. 어떠한 정보를 ..
- C++ 기초플러스 정리-2