전혀 생각지도 못한 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..
여기에서 가져옴. 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
- aix ld
- ld 옵션
- CLion
- Ignoring CMAKE_OSX_SYSROOT value
- 센트6
- 물리디스크
- _stats
- pf.anchors
- yum
- _status
- virtualbox
- pfctl
- CMAKE_OSX_SYSROOT
- physicaldisk
- centos7
- update
- postgresql11
- install
- mirrorlist
- fielddata
- CentOS
- 파티션 추가
- lvm 늘리기
- firewall-cmd service
- noipath
- lvremove
- vgcreate
- Repository
- aix compile
- linux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |