Fast inter-thread communication mechanism
Posted
by Stan
on Stack Overflow
See other posts from Stack Overflow
or by Stan
Published on 2010-03-08T06:58:32Z
Indexed on
2010/03/08
7:06 UTC
Read the original article
Hit count: 339
I need a fast inter-thread communication mechanism for passing work (void*) from TBB tasks to several workers which are running blocking operations. Currently I'm looking into using pipe()+libevent. Is there a faster and more elegant alternative for use with Intel Threading Building Blocks?
© Stack Overflow or respective owner