Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to get the return Address of a thread, This is the scenario. I have a main thread, from the main thread am calling a functionA synchrously..I do some processing on the input parameter the I call one more functionB asynchrnously. I process something on the input parameter & need to return the value then functionA does something on the value returned from the FunctionB. Its something like below

Main --> FuncA +1 ==> FuncB +2
         <==== +3 <==== 

I have achieved this on Threadpool using Action/delegate, Interface, Taskparallel library, Async Result/beginInvoke EndInvoke. I dont want to use that. It should have only 3 Function-No blocking at any point. Is it possible by another means in .Net??

share|improve this question
erm, what?........... – Mitch Wheat Sep 6 '12 at 13:14
@MitchWheat- Am looking for something like below...stackoverflow.com/questions/12277614/… – Bala Sep 6 '12 at 13:17
1  
neither of your previous questions make much sense. This is no different. – Mitch Wheat Sep 6 '12 at 13:18
Methods have a return address, Threads do not. – Henk Holterman Sep 6 '12 at 13:21

closed as not a real question by Mitch Wheat, Henk Holterman, usr, Hans Passant, Peter Ritchie Sep 6 '12 at 16:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You should review Thread.join. It allows two threads to execute consequently.

Main issue here is calling a function synchronously - which indicates that you want to call the first function synchronously and wait for completion of another function in this thread. This will cause blocking any how.

Probable solution can be, you call the first function asynchronously.

share|improve this answer
2  
... Thread.Join : but not on a ThreadPool thread. – Henk Holterman Sep 6 '12 at 13:21
Is it possible to join a thread with the Threadpool's thread?? – Bala Sep 6 '12 at 13:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.