linux platform side 에서 현재 프로세스 이름을 출력하는 방법 입니다.
extern char *__progname;
char* get_process_name()
{
return __progname;
}
'Programming > Linux_Platform' 카테고리의 다른 글
logcat 사용법 정리 (0) | 2015.09.30 |
---|---|
wrtie 비교 O_DIRECT and no-delay-alloc mount option (0) | 2014.08.04 |
[linux][platform] O_DIRECT file open, read, write example (0) | 2014.07.29 |
gdb 로 Android nexus5 debugging 하기 (0) | 2014.07.08 |
[linux platform] LD_PRELOAD 를 이용한 android 에서의 library 교체 (0) | 2014.06.26 |