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

    Dec 20, 2011 · NPTL is now inside GNU Libc on Linux and is (or at least tries very hard to be) an implementation of POSIX threads. It is a bunch of source and binary code on your Linux system.

  2. c++ - How to solve the problem that gdb exits main function with a ...

    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] Ask Question Asked 2 …

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

    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 …

  4. 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: …

  5. c++ - Undefined reference errors for system libraries when static ...

    Sep 21, 2022 · My goal is to be able to deliver, as close as possible, a single executable and hence I'm aiming for aiming as much as possible statically. But I've now run into some issues with libc. I get …

  6. When I compile glibc-2.28 with the make command on centos 7.5, I got ...

    Apr 22, 2023 · the steps is: update the make version to 4.8 update the gcc version to 12.2.0 Perform the following steps to compile glibc: tar zxf glibc-2.28.tar.gz && cd glibc-2.28 mkdir build &&am...

  7. c - segfault at pthread_mutex_lock () - Stack Overflow

    Oct 28, 2019 · This was the top question when I was googling around for ../nptl/pthread_mutex_lock.c: No such file or directory., so I figured I'd post the fix for me. In my case, I was trying to make an …

  8. 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 seconds, sends an …

  9. c - Pthread mutex lock assertion fails - Stack Overflow

    Jun 19, 2017 · This usually indicates that the lock has become corrupted in some way. One possibility is that you are trying to lock a lock that was never initialized or has already been destroyed and not re …

  10. multithreading - Why NPTL threading in Linux still assignee unique PID ...

    Sep 4, 2019 · With NPTL, all of the threads in a process are placed in the same thread group; all members of a thread group share the same PID. My current architecture is running on NPTL 2.17 …