Tagged Questions
The process-thread tag has no wiki summary.
2
votes
1answer
118 views
ProcessThread Name C#
I'm working on a C# application and i'm facing some threads issues.
I would like to know which threads are running in my application.
I use the code bellow :
foreach (ProcessThread s in ...
0
votes
3answers
356 views
Mutex Initialization -(UNIX)
In the following code.A mutex is initialized.what is the significance of NULL.
pthread_mutex_init(&a->monitor,NULL);
I want to know why we pass NULL as the second parameter.
-4
votes
2answers
501 views
Processes and threads
1a)Are MS Word and MS PowerPoint different processes or threads of a single process?
b)How does a spell checker routine (common to both, word and PowerPoint) used? I mean is the code copied 2 times ...