Opened 19 years ago
Closed 15 years ago
#194 closed Feature Requests (None)
Exchange results between several thread calls
Reported by: | elfring | Owned by: | Roland Schwarz |
---|---|---|---|
Milestone: | Component: | thread | |
Version: | None | Severity: | Problem |
Keywords: | Cc: |
Description
Processing results of one thread can be returned like a normal function return value or stored in a variable by the TCL threads package. How can a similar data transfer like it is available by the function "thread::send" (http://cvs.sourceforge.net/cgi- bin/viewcvs.cgi/checkout*/tcl/thread/doc/html/thread.html) be achieved with a similar "comfort" by your class library? I know that all global C++ variables are shared in the memory. But would you like to offer an easy interface to transfer the computed result to the calling thread?
Note:
See TracTickets
for help on using tickets.
The boost thread is an implementation of threading primitives. The feature you are requesting either needs to be addressed by means of these primitives or implemented by some higher level layers.