The multithreading tag has no wiki summary.
1
vote
1answer
91 views
System sending SIGTERM and SIGKILL during normal work
I have a program (C++) that works with TCP sockets in multithreaded manner. The multithreading is intensive, about 100 threads (POSIX threads).
Sometimes, not quite sure when, the program gets ...
2
votes
1answer
110 views
What makes the Linux scheduler seem unpredictable?
The question refers to the output of a multi-threaded application, where each thread merely prints its ID (user assigned number) on the standard output. Here all threads have equal priority and ...
-3
votes
2answers
63 views
Which Linux distro/mode offers lowest interference when running your own applications?
I'm interested in a Linux distro to build C projects and test their behavior in a very predictable and controlled environment. I'm especially concerned about letting the scheduler deal as much as ...
2
votes
1answer
93 views
Does uClibc support using pthreads?
I recently attended an embedded Linux course that stated that uClibc does not support the use of pthreads and that it only supports linuxthreads. Furthermore, the course instructor implied that ...
3
votes
2answers
238 views
What is meant by stack in connection to a process?
From the book Advanced programming in the Unix environment I read the following line regarding threads in Unix like systems
All the threads within a process share the same address space, file
...
3
votes
2answers
1k views
Linux max threads count
my server has been running with Amazon Ec2 linux. I have a mongodb server inside. The mongodb server has been running under heavily load, and, unhappily , I've ran into a problem with it :/
As known, ...
0
votes
1answer
137 views
Analyzing the behavior of a threaded program
Is there an application that will do what Threadscope or the parallel tools of Visual Studio does for multithreaded program analysis in Linux?
3
votes
1answer
236 views
What is the need of the struct thread_info in locating struct task_struct?
While reading through the Linux Device Drivers, I could understand that the Process Descriptor (of type struct task_struct) has all the info regarding a particular task. The process descriptors are ...
3
votes
3answers
442 views
Is crontab multithread?
I don't know where I can find more information about crontab, so I ask here.
Crontab is it multithread? How does it work?