About 165,000 results
Open links in new tab
  1. What is the difference between NPTL and POSIX threads?

    Dec 20, 2011 · There is really no difference: NPTL is just the current Linux implementation of POSIX threads, you still use the pthread_* family of functions. Earlier in Linux history, a …

  2. pthread_mutex_lock_full assertion failed error - Stack Overflow

    Aug 7, 2021 · I have been programming an pthread application. The application has mutex locks shared across threads by the parent thread. For some reason, it throws the following error: …

  3. c++ - GDB complaining about missing raise.c - Stack Overflow

    Jan 16, 2018 · To do full source code debugging of the C library on Ubuntu, there are just a few steps to take: Install the debuginfo version of libc6. It's probably already installed - the gdb …

  4. Could not load source './csu/../csu/libc-start.c': 'SourceRequest' not ...

    Jun 8, 2023 · I solved it by pasting the csu directory of glibc into the same directory as the c file I was running and debugging. This solved the issue.

  5. c++ - How to solve the problem that gdb exits main function with …

    Jun 20, 2023 · How to solve the problem that gdb exits main function with a message "../sysdeps/nptl/libc_start_call_main.h: No such file or directory"? [duplicate] Asked 2 years, 5 …

  6. c++11 - GDB not showing symbols of stripped core files even if a …

    Nov 4, 2022 · I built the program by classic configure, make, make install. Some months after, the program crashed. I still have the build directory where both the source and the non-stripped …

  7. Could not load source: SourceRequest not supported

    May 21, 2021 · I'm trying to run the debugger in VSCode using Bazel on a C++ application on MacOS 11. When I try to run this, I get the error message : "Could not load source ...

  8. Building Glibc 2.33 for Linux results in unit test failures

    Jul 12, 2021 · I'm currently trying to create a build of Glibc 2.33 to live in parallel to the default system version, but the build process is resulting in a large number of unit test failures. While …

  9. A segmentation fault occurs when thread_kill is executed

    Feb 10, 2019 · I am developing a simple program in C on linux in which there is a thread that checks the time elapsed since the beginning of the program and when they have passed 10 …

  10. gcc -pthread no such fiile or directory ex_thread_creation

    Jun 22, 2020 · gcc ex_thread_creation.c -o ex_thread_creation -lpthread The -o flag stands for outfile or the file resulted from compiling the source file. Regarding your code there are several …