$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [boost.thread] function call and functor in thread creation: performance
From: Igor R (boost.lists_at_[hidden])
Date: 2011-01-22 14:38:27
> Does anyone know the performance difference between creating a new boost thread via
> ordinary function vs. doing that via a functor?
As Steven already mentioned, thread launching is so "heavy" procedure,
that it's really doesn't matter if you pass a function pointer or
boost::function.