1
vote
2answers
24 views

Passing messages between processes

I need to write a simple function which does the following in linux: Create two processes. Have thread1 in Process1 do some small operation, and send a message to Process2 via thread2 once operation ...
2
votes
1answer
50 views

Linux thread id comparison

So, I'm having a very bad time finding a current thread id in a list of structures, which reflect information about threads. Basically, each element from the list has a field pthread_t id. My search ...
1
vote
3answers
45 views

Linux, cancel blocking read()

In a multi-threaded Linux program used for serial communication, is it possible (and what would be the best approach) to terminate a blocking read() call from another thread? I would like to keep ...
0
votes
2answers
25 views

timeout event design with a detached thread

I have a linked list, and I insert nodes into it frequently. for each node, after it is inserted, an element inside the node needs to be updated in 5 seconds, if no updating happends inside the 5 ...
0
votes
1answer
49 views

difference between the value returned by pthread_self() and gettid()

according to my understanding, the TID(thread id) returned by gettid() is unique inside a process(or inside a program with multiple processes, while each process may have multiple threads), namely, ...
1
vote
4answers
66 views

what is the value range of thread and process id?

fork and pthread_create will return a process id or thread id. But I don't know the value range of these ids. Now I want to make a lookup table, in each entry there is a item/field for thread id. ...
3
votes
3answers
100 views

How do I tell how many threads a Linux binary is creating without source?

Suppose I have a generic binary without source and I want to determine whether it is running serially or spawns multiple threads. Is there a way I can do this from the linux command line?
0
votes
2answers
34 views

Sockets, Threads and file discriptors in Linux

I'm having some trouble with a program I wrote for Linux (some kind of a server), I'm getting the infamous "Too many open files" error. Up until now I have thought it is a matter of sockets, but, ...
0
votes
0answers
18 views

Warning thread 0x7f5xxx terminated without calling +exit

I'm using the linux version of GCD (libdispatch) to handle multithreading in an application. Recently the following message displayed during runtime: Warning thread 0x7f56f40008c8 terminated without ...
3
votes
2answers
62 views

Send TERM signal to child process spawned in another thread of parent process

I'm on Linux platform and using Perl. First of all I created a thread, and forked a child process in this new thread. When the parent in the new thread returned and joined to the main thread, I would ...
1
vote
1answer
30 views

performance - multithreaded or multiprocess applications

In order to develop a highly network intensive server application on linux, what sort of architecture is preferred? The idea is that this app would typically run on machines with multiple cores ...
0
votes
1answer
45 views

localtime not thread safe, but okay to call in only one thread?

Am integrating another users code into mine. They have library that calls localtime function which is not thread safe. I have noticed some strange problems. If their code is restricted to one ...
0
votes
3answers
70 views

Condition Variable POSIX Thread : C/C++

I am learning Multithreading. With regard to http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html#SCHEDULING #include <stdio.h> #include <stdlib.h> #include <pthread.h> ...
0
votes
1answer
33 views

how is the thread name set in log4cplus?

I'm evaluating log4cplus for a multi threaded C++ application on linux. The TTCCLayout and the PatternLayout allow the thread name to be displayed. In my tests there was never a name but just a ...
0
votes
1answer
38 views

Linking to Boost thread library fails

I have a serious problem with Boost 1.52.0. In Eclipse, I always get: boost/thread/detail/thread.hpp:223: undefined reference to `boost::thread::start_thread() Of course I'm using lboost_system, ...
1
vote
4answers
51 views

How do I “disengage” from `accept` on a blocking socket when signalled from another thread?

I am in the same situation as this guy, but I don't quite understand the answer. The problem: Thread 1 calls accept on a socket, which is blocking. Thread 2 calls close on this socket. Thread 1 ...
0
votes
1answer
20 views

itk 3.20.1 Processor affinity

is there any way to set Processor affinity for ITK (3.20.1) threads. I was looking into ITK::MultiThreader class which has "SetGlobalDefaultNumberOfThreads". but i am not finding any function/method ...
-1
votes
1answer
48 views

How to “force” single thread legacy applications into using multiple processors [closed]

I have a small multi-core server that performs a variety of tasks, most of which are multi-threaded and have been speed-tuned satisfactorily. However, some of the tasks rely on existing ...
0
votes
1answer
32 views

How a thread service two data sockets (not control sockets) equally?

Suppose that we have a single-thread application, and it needs to service two clients by writing 1G bytes data to two separate tcp sockets (one socket per client) respectively, in this situcation how ...
1
vote
2answers
50 views

Forking vs Threading

I have used threading before in my applications and know its concepts well, but recently in my operating system lecture I came across fork(). Which is something similar to threading. I google ...
1
vote
0answers
122 views

Single Producer / Consumer Ring Buffer in Shared Memory

Recently I've been playing about with using shared memory for IPC. One thing I've been trying to implement is a simple ring buffer with 1 process producing and 1 process consuming. Each process has ...
0
votes
1answer
32 views

taskset and unknown thread on linux

My company has just brought a software API that spawns off a monitoring thread (when enabled). This monitoring thread is very useful however we would like to lock it to core 0 in Linux. However, I ...
0
votes
1answer
63 views

What are the main purposes for joining pthreads in Linux/UNIX?

I'm a student and I'm going over threads right now, and despite reading TLPI very carefully, I still don't have a good understanding as to why one might join two pthreads. From what I've gleaned, it ...
1
vote
1answer
36 views

Purpose of wake_up_sync/wake_up_interruptible_sync in the Linux kernel

I'm following an example in the Linux Device Drivers 3rd Edition book: if (temp = = 0) wake_up_interruptible_sync(&scull_w_wait); /* awake other uid's */ return 0; The author states: ...
0
votes
1answer
63 views

Java program executed in Linux by different user

I write a Java multithread program to retrieve the big data(netflow data) from remote router, then put the data to into hbase table. but I deploy the Java program on CentOS6.3(two accounts, one is ...
4
votes
2answers
159 views

C++: Thread synchronization scenario on Linux Platform

I am implementing multithreaded C++ program for Linux platform where I need a functionality similar to WaitForMultipleObjects(). While searching for the solution I observed that there are articles ...
0
votes
2answers
43 views

In what condition would a thread exit or stop running

I am writing a server application in which there is a thread deployed to read/write many sockets connecting to clients. My manager tells me that it is not a good design, because if the thread aborts ...
1
vote
0answers
86 views

SEGMENTATION FAULT in PERL SCRIPT on unix in multi-process/threads using pipes

I'm new to the process of Multi-process programming in perl. I am trying to write a multi-threaded multi-process based application which is giving me "SEGMENTATION FAULT". The program is simple. First ...
0
votes
0answers
19 views

Thread cancellation points poin in WIndows [duplicate]

Does anyone know how to set a cancellation points on Windows? Linux provides some API pthread_setcanceltype etc. I am looking for alternative APIs on Windows.
0
votes
0answers
27 views

find the cache data accessed by thread

I read from wiki that "Data is transferred between memory and cache in blocks of fixed size, called cache lines. When a cache line is copied from memory into the cache, a cache entry is created. The ...
1
vote
1answer
80 views

Is Linux timer a process

I'm trying to understand timers in linux to use it in my application, I've collected code from multiple sources and made the following program #include <stdlib.h> #include <unistd.h> ...
-2
votes
1answer
90 views

Segmentation Fault in multithread program C [closed]

I have made the following program as part of my academic project. I have given the entire program since I cannot identify the actual problem. #include<stdio.h> #include<math.h> ...
1
vote
2answers
109 views

Thread execution time in C/Linux

Wandering if I can measure actual time or cpu ticks taken by a particular thread. pthreadcreate(.........); // // pthreadjoin(.......); I am running with 3 threads. One master thread is calling ...
6
votes
1answer
148 views

What costs the extra execution time of the routine in a pthread program?

I wrote four different programs to count total words in two files. These four versions look mostly the same. First three versions use two threads to count and just the orders of three statements are ...
2
votes
3answers
318 views

UDP Multiple sockets Receive data and process efficiently - C & Linux

I have to receive data from 15 different clients each of them sending on 5 different ports. totally 15 *5 sockets. for each client port no is defined and fixed. example client 1 ,ports 3001 to ...
0
votes
1answer
75 views

How to create a real thread with clone() on Linux?

I am trying to create a new thread using clone(). With the following code (...): #include <stdio.h> #include <stdlib.h> #include <unistd.h> #define _SCHED_H 1 #define __USE_GNU 1 ...
0
votes
2answers
97 views

`pthread_mutex_trylock` and `pthread_mutex_lock` behaviour

This is a follow up to this question. In that code, when I was not using fflush(stdout) output was not flushed to the screen when I kept sleep(1). #define S sleep(0) void* xThread_fn(void* arg) ...
0
votes
4answers
116 views

pthread does not seem to use updated global data value

I am new to threads. I want to make two threads xthread prints 'X'; and ythread prints 'Z'; continuously until the user inserts 'C' or 'c' at stdin. I have made use of select to check if there is any ...
1
vote
1answer
270 views

Linux Bash script to ping multiple hosts simultaneously

I have a text file with list of 500 server names and need to ping all of them simultaneously instead of one by one in a loop and put the pingable ones in one file and unpingable ones in another file. ...
0
votes
1answer
46 views

epoll and hash table in threads

I have mutli threaded application with worker threads, I'm using a hash table to route messages between two opend sd(socket descriptores), each thread is waiting with epoll_wait for a new connection ...
0
votes
1answer
55 views

pthread executes after expected

I'm trying to compress a file consisting of 1's and 0's as part of an assignment. I have succeeded in doing this, however to get a feel for threads I'm trying to display a simple progress display ...
6
votes
1answer
189 views

Only thread handling io_service is waiting even though async I/O operations are pending

Boost's ASIO dispatcher seems to have a serious problem, and I can't seem to find a workaround. The symptom is that the only thread waiting to dispatch is left in pthread_cond_wait feven though there ...
0
votes
1answer
38 views

handful of busy threads vs. many mostly-idle threads

i've got some code where for each User object, 1-2 seconds of work is done, then wait 60 seconds, then do more work. My question is if i have lets say a few thousand Users, aside for more memory for ...
0
votes
2answers
45 views

What happens if two cores try to write to same place in main memory at same time?

if two different cores try to write to the same spot in main memory at the same time, what happens? Does main memory automatically only allow a spot in memory to be written one-at-a-time, or does some ...
0
votes
1answer
40 views

Do mutexes block ALL threads at any point?

In Linux, say I have code with 100 threads. 5 of those threads compete over a shared resource protected by a mutex. I know that when the critical section is actually being run, only the 5 threads are ...
0
votes
1answer
88 views

serial communication C/C++ linux thread safe?

My question is quite simple. Is reading and writing from and to a serial port under linux threadsafe? Can I read and write at the same time from different threads? Is it even possible to do 2 writes ...
0
votes
5answers
84 views

choosing between process and thread, and inter-process(thread) communication

I want to write a simple UDP server program which use recvfrom() to receive packet for each received packet, the program will process it my original source codes are like: for(;;){ n = ...
0
votes
0answers
81 views

Logic of thread creation using C in linux

This is a part of my code for a lab assignment. int main(void) { printf("Creating thread 1\n"); assert(!create_thread(thread2)); printf("Creating thread 2\n"); ...
2
votes
3answers
66 views

Is it always effective to read a variable in the multi-thread environment?

There is a variable(e.g. int temp;) in the multi-thread environment. Some threads write to it, with write-lock protected. while others read the variable, but without any lock. My question is: If the ...
-1
votes
1answer
55 views

How do you create two priority arrays of queues in java? / Linux constant time scheduler

This is a step in my assignment and it seems easy, but it seems a little confusing to me. Help would be great considering this thing is due tomorrow. Code format response would be great. Here is the ...

1 2 3 4 5 16