Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
1k views

How can Google Chrome isolate tabs into seperate processes while looking like a single application?

We have been told that Google Chrome runs each tab in a separate process. Therefore a crash in one tab would not cause problems in the other tabs. AFAIK, multi-processes are mostly used in programs ...
13
votes
8answers
5k views

multiprocess or threading in python?

I have a python application that grabs a collection of data and for each piece of data in that collection it performs a task. The task takes some time to complete as there is a delay involved. Because ...
6
votes
5answers
220 views

Ant simulation: it's better to create a Process/Thread for each Ant or something else?

The simple study is: Ant life simulation I'm creating an OO structure that see a Class for the Anthill, a Class for the Ant and a Class for the whole simulator. Now I'm brainstorming on "how to" ...
5
votes
2answers
126 views

How to count CPU Usage of multiprocess application in Linux

I try to make a program with C/C++, to behave like top command in Linux. I've done some research and already known how to count CPU Usage of a process. We can get the CPU Usage by calculating stime + ...
5
votes
2answers
536 views

How much memory should 'managed_shared_memory' allocate? (boost)

I'm looking for a definitive answer (if indeed one exists) on how much memory should be allocated when creating a static chunks of shared memory via boost::interprocess's managed_shared_memory. Even ...
5
votes
3answers
390 views

Performance difference for multi-thread and multi-process

Few years ago, under Windows environment, I did some testing, by letting multiple instance of CPU computation intensive + Memory access intensive + I/O access intensive application run. I develop 2 ...
5
votes
1answer
913 views

Python Process blocked by urllib2

I set up a process that read a queue for incoming urls to download but when urllib2 open a connection the system hangs. import urllib2, multiprocessing from threading import Thread from Queue import ...
4
votes
1answer
75 views

Is it possible to know which SciPy / NumPy functions run on multiple cores?

I am trying to figure out explicitly which of the functions in SciPy/NumPy run on multiple processors. I can e.g. read in the SciPy reference manual that SciPy uses this, but I am more interested in ...
3
votes
1answer
100 views

Python, multithreading too slow, multiprocess

I'm a multiprocessing newbie, I know something about threading but I need to increase the speed of this calculation, hopefully with multiprocessing: Example Description: sends string to a thread, ...
3
votes
5answers
509 views

Calculate the fibonacci numbers in multiprocess way?

I am writing multi process fibonacci number calculator , I have a file that keeps track of the fibonacci numbers , first process open the file and write first fibonacci numbers (0 and 1 ), then do ...
2
votes
2answers
50 views

C: multi-processes stdio append mode

I wrote this code in C: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> void random_seed(){ struct timeval tim; gettimeofday(&tim, ...
2
votes
3answers
83 views

Python, using multiprocess is slower than not using it

After spending a lot of time trying to wrap my head around multiprocessing I came up with this code which is a benchmark test: Example1: from multiprocessing import Process class Alter(Process): ...
2
votes
4answers
202 views

how to write a process-pool bash shell

I have more than 10 tasks to execute, and the system restrict that there at most 4 tasks can run at the same time. My task can be started like: myprog taskname How can I write a bash shell script to ...
2
votes
2answers
146 views

Python: How can I check the number of pending tasks in a multiprocessing.Pool?

I have a small pool of workers (4) and a very large list of tasks (5000~). I'm using a pool and sending the tasks with map_async(). Because the task I'm running is fairly long, I'm forcing a ...
2
votes
1answer
418 views

boost::asio server multi-process

I would to make a simple multi process (not thread) server. I've seen the iterative example in which it handles one request at a time. Instead I need to handle more requests(more on less 10) at the ...
2
votes
1answer
270 views

How to avoid multiple writers in a named pipe?

I am writing a program with a named pipe with multiple readers and multiple writers. The idea is to use that named pipe to create pairs of reader/writer. That is: A reads the pipe B writes in the ...
2
votes
2answers
637 views

ETW tracking from .net, user mode and driver

We have an application that parts of it are in .net, c++ usermode and C++ drivers. The application is divided into several executables that run on demand and communication with each other using ...
2
votes
1answer
449 views

Why does my Berkeley DB concurrent data store application hang?

My application hangs when trying to open a concurrent data store (CDB) database for reading: #0 0x0000003ad860b309 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 ...
2
votes
2answers
2k views

python threading/fork?

I'm making a python script that needs to do 3 things simultaneously. What is a good way to achieve this as do to what i've heard about the GIL i'm not so lean into using threads anymore. 2 of the ...
1
vote
1answer
46 views

Multiple instances of subprocess.Popen

Hi I have just started programming in python and I am trying to use subprocess.Popen to run multiple instances of a program that i compile using "make". But before i do a "make", I have to do some ...
1
vote
1answer
60 views

Multiprocess with WSGI

I am developing an application with apache and wsgi. The structure of my app is like this: Client --> Web Server --> Dispatcher(receive http request from server) --> Worker(process the request) --> ...
1
vote
4answers
101 views

Executing C++ program on multiple processor machine

I developed a program in C++ for research purpose. It takes several days to complete. Now i executing it on our lab 8core server machine to get results quickly, but i see machine assigns only one ...
1
vote
1answer
129 views

Multiple processes sharing a listening socket: When a new process enters why does the old one stop?

These code is the Server part of my proxy program, and its function is creating the socket and fork four process to accept one by one. In my program I use gevent model to dispatch all my ...
1
vote
1answer
220 views

Is there an 'upgrade_to_unique_lock' for boost::interprocess? (resolved)

I am looking for the best way to effectively share chunks of data between two (or more) processes in a writer-biased reader/writer model. My current tests are with boost::interprocess. I have created ...
1
vote
2answers
279 views

How can I send messages (or signals) from a parent process to a child process and viceversa in Perl?

Im writing a program that manage muti-processes. This is what I have done and its working great! but now, I want to send messages from the child processes to the parent process and viceversa (from the ...
1
vote
4answers
1k views

python multi threading/ multiprocess code

In the code below, I am considering using mutli-threading or multi-process for fetching from url. I think pools would be ideal, Can anyone help suggest solution.. Idea: pool thread/process, collect ...
1
vote
1answer
645 views

Python/Twisted - Sending to a specific socket object?

I have a "manager" process on a node, and several worker processes. The manager is the actual server who holds all of the connections to the clients. The manager accepts all incoming packets and puts ...
0
votes
1answer
26 views

Segmentation Fault With Multiple Threads

I get error segmentation fault because of the free() at the end of this equation... don't I have to free the temporary variable *stck? Or since it's a local pointer and was never assigned a memory ...
0
votes
1answer
42 views

Best web server for SUN T5240 multi-core multi-thread [closed]

I was hoping someone might be able to shed some light/understanding as well as an answer to my question. I have a SUN T5240 [2cpu (1.2Ghz) - 6 cores per cpu - 8 threads per core]. I believe the T5240 ...
0
votes
0answers
50 views

Using cvGetWindowHandle to show image

In one process I am trying to show an image in a window that is made by another process. I guess that cvGetWindowHandle() can help me with this, but I would like some inputs on how.
0
votes
0answers
65 views

Python nose - runnning multiprocess programatically

I can't run nose with several processes programmatically. This works...: PYTHONPATH="/home/developer/Downloads/unittest2-0.5.1:" nosetests --processes=4 It spawns 4 browsers at once. When ...
0
votes
2answers
39 views

python multiprocess caller (as well as callee) invoked multiple times on windows XP

I'm trying to use python multiprocess to parallelize web fetching, but I'm finding that the application calling the multiprocessing gets instantiated multiple times, not just the function I want ...
0
votes
2answers
39 views

Start a subordinate process

I would like to start a process from my application with Process.Start() and I would like that in case of my app crash or the user close it then the child process is automatically killed. Is it ...
0
votes
1answer
51 views

Multiprocessing between different languages such as PHP and Python

I asked a question before about how to do multiprocessing in Python (although I did not use the word multiprocessing in the former question, because I was not sure I was asking about that yet). Now I ...
0
votes
0answers
59 views

Odd TypeError with Multi Process Python Module

I'm trying to start a web.py server using this code: if __name__ == "__main__": p = Process(target=app.run) #starts the web.py server p.start() main() #starts a main listening loop for ...
0
votes
1answer
101 views

Implementing Multicore Threading on this algorithm

I'm trying to find a way to make the following algorithm being processed on multiple cores, but I don't get on a good point. Using a locked iterator shared between multiple processes wouldn't be the ...
0
votes
1answer
163 views

python: How to debug multiprocess? (using eclipse+pydev)

I've seen a couple of questions on the topic but I didn't get a full answer... My code is basically: from multiprocessing import Process p = Process(target=f).start() p.join() def f(): print ...
0
votes
1answer
474 views

One python multiprocess errors

I have one multprocess demo here, and I met some problems with it. Researched for a night, I cannot resolve the reason. Any one can help me? I want to have one parent process acts as producer, when ...
0
votes
1answer
234 views

Control process concurrency in PHP

I have programmed a simple app that every X minutes checks if an image has changed in several websites and downloads it. It's very simple: downloads image header, make some CRC checks, downloads the ...