본문 바로가기

전체 글

Yum httpd 에 mod_jk 설치 하기 출처 : http://www.openscope.net/2010/01/02/install-mod_jk/ Use mod_jk to bridge apache and Jboss mod_jk is an apache extension that you can use to redirect incoming http requests to an application server. It lets you configure multiple applications servers by virtual host urls, and provides a means of setting up load balancing preferences between application servers. It’s very useful because it le.. 더보기
fails sanity check 에러가 날때 AWS에서 빌드할려고 보니 하기 에러가 난다. configure: error: C++ preprocessor "/lib/cpp" fails sanity check 하기 gcc g++ 설치가 되어있는지 먼저 보고 sudo yum install gcc-c++ 안되면 아래 패키지를 설치 하면 된다. yum groupinstall 'Development Tools' 'Development Libraries' 더보기
SCO 디버깅 하기 출처 : http://permalink.gmane.org/gmane.linux.bluez.devel/75 Re: [Bluez-devel] Re: (no subject)Hello, It seems that many people are stuck at the same place when trying to transmit voice over SCO. The nature of Marcel's replies suggests to me that there may be something that we all get wrong, so I'll try to summarize what I understand, to see if we can locate the misconception together. a- SCO sock.. 더보기
블루투스(Bluetooth)의 개요와 기초 출처 : http://www.microvision.co.kr/bluetooth/bluetooth_lecture.htm 더보기
[Java] synchronized 란? 출처 : http://interwater.tistory.com/13 Java 하며서 이론적으로 자주 마주 치는 놈이 이것인데.... 이건 간단히 말하면 db 락의 개념으로 보면 된다. synchronized 이게 붙어 있는 매쏘드는 그 매쏘드의 작업이 끝나기 전에 다른 놈이 사용을 못하게 하는 것이지.. 엇 자 그런데 만약에 synchronized 가 붙은 method 가 있는 클래스를 new 를 통해서 생성해서 각각 쓰면 이게 동기화가 될까? ---------------------------------- ex) class A{ synchronized test(){ } } class B{ new A().test(); new A().test(); } -------------------------------.. 더보기
FTS4BT Bluetooth Analyzer 사용하기 http://blog.naver.com/netxy/110017611465 더보기
CTS 정리 출처 : http://csjung.tistory.com/entry/CTS-%EC%A0%95%EB%A6%AC 정의 CTS(Compatiblity Test Suite)는 안드로이드 디바이스의 호환성을 테스트 하는 도구입니다. 안드로이드 표준 SDK에서 요구하는 API들이 존재하는지, 그리고 정상적으로 동작하는지 확인하는 것입니다. CTS를 하는 이유는 개발자가 표준 SDK의 개발 가이드에 따라서 만든 응용 프로그램들이, CTS 인증을 받은 안드로이드 호환 디바이스에서 정상적으로 동작함을 보장하기 위함입니다. 따라서 CTS의 통과는 안드로이드 마켓에 접속하기 위한 가장 기본적인 요건입니다.. 그리고 구글의 정책상 마켓 프로그램 뿐 아니라 GMS(Google Mobile Service)라고 불리우는 다양한 어플.. 더보기
임의로 Call stack(콜스택) 찍기 방법 1. Exception ex 와 같이 객체를 하나 만들고, ex.printStackTrace() 하면 해당 위치의 Call stack을 볼 수 있습니다. 방법 2. StringBuffer stacktrace = new StringBuffer();StackTraceElement[] stackTrace = new Exception().getStackTrace(); for(int x=0; x RefBase 소스에서 incStrong() -> AudioFlinger 소스에서 onFirstRef() 이렇게 호출된 것을 볼 수 있습니다. 더보기