- Timestamp:
- Aug 31, 2010, 8:37:29 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/libraries/core/command/TclThreadManager.cc
r7284 r7297 303 303 /** 304 304 @brief Sends a command to the queue of a given Tcl-interpreter 305 @param id The id of the target interpreter305 @param target_id The id of the target interpreter 306 306 @param command The command to be sent 307 307 */ … … 326 326 @brief This function can be called from Tcl to send a command to the queue of any interpreter. 327 327 @param target_id The id of the target thread 328 @param args Contains the content of the command 328 329 */ 329 330 void TclThreadManager::tcl_crossexecute(int target_id, const Tcl::object& args) … … 334 335 /** 335 336 @brief Sends a command to the queue of a given Tcl-interpreter 336 @param id The id of the target interpreter337 @param target_id The id of the target interpreter 337 338 @param command The command to be sent 338 339 */ … … 347 348 /** 348 349 @brief Sends a query to a given Tcl-interpreter and waits for the result 349 @param id The id of the target interpreter350 @param target_id The id of the target interpreter 350 351 @param command The command to be sent 351 352 @return The result of the command … … 359 360 @brief This function can be called from Tcl to send a query to the main thread. 360 361 @param source_id The id of the calling thread 362 @param args Contains the content of the query 361 363 362 364 A query waits for the result of the command. This means, the calling thread will be blocked until … … 373 375 @param source_id The id of the calling thread 374 376 @param target_id The id of the target thread 377 @param args Contains the content of the query 375 378 */ 376 379 std::string TclThreadManager::tcl_crossquery(int source_id, int target_id, const Tcl::object& args)
Note: See TracChangeset
for help on using the changeset viewer.