Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
15k views

Single-threaded apartment - cannot instantiate ActiveX control

I need to get information about applied CSS styles in HTML page. I used AxWebBrowser and iterate IHTMLDOMNode. I'm able to get all the data I need and move the code into my application. The problem is ...
3
votes
4answers
317 views

Why is this OpenMP program slower than single-thread?

Please look at this code. Single-threaded program: http://pastebin.com/KAx4RmSJ. Compiled with: g++ -lrt -O2 main.cpp -o nnlv2 Multithread with openMP: http://pastebin.com/fbe4gZSn Compiled ...
3
votes
5answers
165 views

Semaphores in a single thread

I was wondering whether it would ever make sense to use a mutex or semaphore when there is only one thread?. Thanks for your help.
2
votes
1answer
78 views

Number of threads created is 12 but still runs only on one core of 12 core-CPU

I have a strange issue. I have a Matlab mexfunction in which I have used OpenMP directives/functions. Before the beginning of a parallel section (parallel for...), I use commands to set and print the ...
2
votes
0answers
53 views

How many memories can be allocated to the single-threaded in Android? [closed]

How many memories can be allocated to the single-threaded by system? The maximum and the minimum ? malloc swap+RAM * 0.5 ? Or, is there no limit ? Thanks.
2
votes
2answers
95 views

WCF - possible to switch between single-thread and multi-thread purely through config?

I have developed a WCF service (which happens to listen on an MSMQ queue). I haven't put any specific threading-related code in, so it runs by default in a multi-threaded manner. This will be fine ...
2
votes
1answer
449 views

Handling multiple TcpClient connections without using threads

I've got a C# program with lots (let's say around a thousand) opened TcpClient objects. I want to enter a state which will wait for something to happen for any of those connections. I would rather ...
2
votes
2answers
333 views

Why can I deadlock in a single-threaded FLTK application?

I have a supposedly single-threaded FLTK application with a popup menu, created with Fluid. I have a class that sub-classes Fl_Gl_Window and implements a handle() method. The handle() method calls a ...
2
votes
1answer
631 views

Getting the exit code from a process submitted with qsub on Sun Grid Engine

I would like to submit jobs via qsub on Sun Grid Engine (now: Oracle Grid Engine?). I do not wish to use the -sync yes option or qrsh, because I want my controlling program to be single-threaded and ...
1
vote
1answer
81 views

Single-Threaded Windows Service Delaying OnStop

I have a Windows Service (C# 4.0) that picks messages off of a private message queue and for each message sends one or more emails (typically 4 or 5 at most) based on message content. Message volume ...
1
vote
3answers
78 views

Does Java enforce as-if-serial for single threaded applications

I am running some JUnit tests on a single thread and they are failing in a non-deterministic way. I had one person tell me that the optimizing JVM (Oracle Hotspot 64-Bit 17.1-b03) is executing the ...
1
vote
4answers
884 views

Deadlock in Single threaded application

Can a single threaded application have a deadlock? If so, please provide an example.
1
vote
3answers
121 views

timeout for method on UI thread

I have the problem that I'm instanciating an object on the UI-thread (WinForms). This object creation probably takes very long, and I would like to have some sort of a "timeout" for that method ...
0
votes
1answer
20 views

Get User info in WCF-service with [STAOperationBehavior] attribute

I have a silverlight-enabled WCF-service, of which one method absolutely requires the [STAOperationBehavior] attribute. I need to access user details (Forms Authentication) for the user, but ...
0
votes
0answers
62 views

Which cloud provider to choose to run a CPU intensive program on? [closed]

I have a program that performs some simulations and is really CPU intensive. The program is written in C++, single-threaded. I need the results from the program as soon as possible. Which cloud ...
0
votes
0answers
59 views

Connection Pool Size for Fixed Thread Program

I have a fixed thread java program. It is implemented with Spring Integration and ActiveMQ. Fixed thread here means that program has multiple threads but the count of them in runtime don't change. Now ...
0
votes
2answers
411 views

How to implement a full duplex channel over TCP with a single thread?

The network lib I'm writing needs to send and receive messages through a TCP socket. Messages can be sent or received any time, i.e should work as a full duplex channel. I was able to implement such ...
0
votes
1answer
70 views

Can you configure a JBoss web app to be single threaded?

Can you configure a JBoss web application to be single threaded? Ie: only accept one incoming web request (ie: socket connection) at a time? Or is there a way to say max 3 concurrent connections? I ...