전혀 생각지도 못한 signal safe 문제..;; 펌 SIGNAL-SAFETY(7) Linux Programmer's Manual SIGNAL-SAFETY(7) NAME top signal-safety - async-signal-safe functions DESCRIPTION top An async-signal-safe function is one that can be safely called from within a signal handler. Many functions are not async-signal-safe. In particular, nonreentrant functions are generally unsafe to call from a signal handler. The kinds of..
요기 ㅎ
- [ulimit -a] 명령으로 core size 확인- [ulimit -c unlimited] 명령으로 size 제한 해제 - gdb를 통해 core 파일 생성[root@localhost src]# gdb --pid=18843 --batch -ex gcore [New LWP 18847][New LWP 18846][New LWP 18845][New LWP 18844][Thread debugging using libthread_db enabled]runtime.epollwait () at /usr/local/go/src/runtime/sys_linux_amd64.s:563563 MOVL AX, ret+24(FP)warning: File "/usr/local/go/src/runtime/runtime-gdb..
# hp-ux> tusc -afpo [output file] [pid] [executable] # aix> truss -aefo [output file] [executable] # SunOS> truss -aefo [output file] [executable] # linux> strace -fo [output file] [executable] # option-p : pid-f : fork()가 호출되어 자식 프로세스가 생기는 경우 자식프로세스까지 추적-F : '-f'와 비슷하며 fork()가 아닌 vfork()에 의한 자식프로세스 추적-o : output 대상 파일명
여기에서 가져옴.구글 번역 ㅎㅎ VSHOST — the Hosting Process 새 Visual Studio 2005 베타 버전을 사용하고 있다면 파일 이름에 "vshost"라는 단어가있는 "bin"폴더에 몇 개의 새 파일이 나타났습니다. 예를 들어 새 WindowsApplication을 만들고 F5 키를 누르면 "WindowsApplication1.vshost.exe"및 "WindowsApplication1.vshost.exe.config"라는 파일이 표시 될 수 있습니다. 이 게시물은 이러한 새로운 파일이 존재하는 이유를 밝히고 사람들이 묻는 몇 가지 일반적인 질문에 대한 답변을 제공하기위한 것입니다. What is “vshost”?이것은 "호스팅 프로세스"입니다. Visual Studio 200..
[System.Environment.CurrentDirectory] 등을 사용하여 프로세스 path를 가져올 수 있겠으나 현재 작업 path를 가져오게 된다. 서비스에 등록되어 실행 된 프로세스에서 [System.Environment.CurrentDirectory]을 사용 할 경우 system 위치를 반환하므로 아래의 방법으로 가져오며 되겠다. - windows form 을 사용 시 (pull filepath를 가져옴)System.Windows.Forms.Application.ExecutablePath - Reflection 네임스페이스를 사용 (pull filepath를 가져옴)System.Reflection.Assembly.GetExecutingAssembly().Location - AppDomain..
여기에서 가져옴. cygwin을 이용하여 windows 에서 gcc를 사용하는 방법. cygwin으로 빌드 된 바이너리는 상업용으로 사용하지 못함! minGW로 빌드하며 상업용으로 가능함. ===================================================== How to Install the Latest GCC on WindowsSeveral modern C++ features are currently missing from Visual Studio Express, and from the system GCC compiler provided with many of today’s Linux distributions. Generic lambdas – also known as poly..
class의 멤버 함수에서 thread 실행 시 에러 함수에서 thread 실행 후 그냥 함수가 종료 될 경우 아래와 같은 에러가 발생[root@TMSA thread]# ./threadterminate called without an active exception중지됨 thread 실행 후 join 또는 detach 로 핸들링 해야함.#include#include#include#include class MyClass{std::mutexmtx_count;intiCount;public :MyClass(){iCount = 0;}~MyClass(){} int getCount(){return iCount;} void workThread(int iIdx){while(1){mtx_count.lock();iCount+..
Start thread with member function(람다 이용) 출처[http://stackoverflow.com/questions/10673585/start-thread-with-member-function] Since you are using C++11, lambda-expression is a nice&clean solution.class blub { void test() {} public: std::thread spawn() { return std::thread( [this] { this->test(); } ); } };since this-> can be omitted, it could be shorten to:std::thread( [this] { test(); } )or juststd..
GNU Make 3.82 Makefile 옵션 as 명령에서 사용 옵션AS = gasASFLAGS = gcc 명령에서 사용 옵션CC = gccCFLAGS = g++ 명령에서 사용옵션CPP = g++CPPFLAGS = ld 명령에서 사용옵션LD = ldLDFLAGS = LIB_HOME = /root/myapp/libAPP_HOME = /root/myappOBJDIR = $(APP_HOME)/sourceOUTDIR = $(APP_HOME) CC = gccCXX = g++AR = ar LINT = lint CPPFLAGS = -g -std=c++11 -I$(LIB_HOME) SRCS = myapp.cpp test.cpp OBJS = $(SRCS:%.cpp=$(OBJDIR)/%.o) TARGET = myapp ..
- Total
- Today
- Yesterday
- firewall-cmd service
- aix compile
- yum
- CLion
- vgcreate
- 센트6
- noipath
- lvm 늘리기
- aix ld
- Repository
- CentOS
- pf.anchors
- physicaldisk
- _stats
- virtualbox
- linux
- mirrorlist
- lvremove
- _status
- pfctl
- 물리디스크
- postgresql11
- CMAKE_OSX_SYSROOT
- ld 옵션
- centos7
- Ignoring CMAKE_OSX_SYSROOT value
- install
- 파티션 추가
- fielddata
- update
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |