我正在尝试运行程序,几次运行后出现错误:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
我的代码在此处可用:https://github.com/Qabrt/turnstiles
gdb输出:
Thread 31 "trivial_test" received signal SIGABRT, Aborted.
[Switching to thread 31 (Thread 0x7fff8a7fc700 (LWP 8716))]
#0 0x00007ffff6e7f83b in raise () from /lib64/libc.so.6
(gdb) bt
#0 0x00007ffff6e7f83b in raise () from /lib64/libc.so.6
#1 0x00007ffff6e81081 in abort () from /lib64/libc.so.6
#2 0x00007ffff78670e5 in __gnu_cxx::__verbose_terminate_handler ()
at /var/tmp/portage/sys-devel/gcc-7.3.0-r3/work/gcc-7.3.0/libstdc++-v3/libsupc++/vterminate.cc:95
#3 0x00007ffff7864cb6 in __cxxabiv1::__terminate (handler=<optimized out>)
at /var/tmp/portage/sys-devel/gcc-7.3.0-r3/work/gcc-7.3.0/libstdc++-v3/libsupc++/eh_terminate.cc:47
#4 0x00007ffff7864d01 in std::terminate ()
at /var/tmp/portage/sys-devel/gcc-7.3.0-r3/work/gcc-7.3.0/libstdc++-v3/libsupc++/eh_terminate.cc:57
#5 0x00007ffff789243f in std::execute_native_thread_routine (__p=0x555555790f80)
at /var/tmp/portage/sys-devel/gcc-7.3.0-r3/work/gcc-7.3.0/libstdc++-v3/src/c++11/thread.cc:91
#6 0x00007ffff7bbd96a in start_thread () from /lib64/libpthread.so.0
#7 0x00007ffff6f4d11f in clone () from /lib64/libc.so.6
g ++ --version
g++ (Gentoo 7.3.0-r3 p1.4) 7.3.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
我正在使用-lpthread标志进行编译:
/usr/bin/c++ -Wall -Wunused-function -Wwrite-strings -Wformat -Wformat-security -Wparentheses -Wsequence-point -Wno-system-headers -Werror -Winit-self -g -O0 -fstack-protector-all -D_GLIBXX_DEBUG -D_GLIBXX_DEBUG_PEDANTIC -rdynamic CMakeFiles/trivial_test.dir/trivial_test.cpp.o -o trivial_test ../libturnstile_lib.a -lpthread
如何获取有关该问题的更多信息?
答案 0 :(得分:1)
在将函数设置为noexcept之后,我能够找到堆栈跟踪,显示出我正在互斥锁上的unique_lock上调用condition_variable :: wait()。只是我调用了wait()的Semaphore对象为空。因此,在https://en.cppreference.com/w/cpp/thread/unique_lock/lock
中,由unique_lock引发的system_error答案 1 :(得分:0)
首先,您需要确定错误是由于std::thread
正在运行的函数还是std::thread
本身而引起的。如果您的函数引发异常,它将被std::thread
启动器函数捕获,并会调用终止。如果您将函数noexcept
设为terminate
,则在捕获之前将调用std::thread
,并且您会在堆栈跟踪中看到它的位置(较新版本的GCC不会捕获该异常,因此这会自动发生。)
如果异常来自pthread_create
本身,则意味着您的程序已链接到libc.so.6
中libpthread.so
的虚拟定义,而不是libpthread.a
中的真实定义或ldd
使用libpthread.so
查看您的程序是否链接到共享的libpthread.so
。如果是这样,则您的工具链有问题(应该使用libc.so
中的定义代替libpthread.a
中的弱符号)。如果您是静态链接,则可能需要确保-Wl,--whole-archive -pthread -Wl,--no-whole-archive
中的所有符号都包含在程序中,例如通过使用:
-pthread
您应该使用-lpthread
而不是DATE
,因为这可以使GCC确保将其放置在链接命令中的正确位置。