| Index: Source/wtf/Functional.h
|
| diff --git a/Source/wtf/Functional.h b/Source/wtf/Functional.h
|
| index 9c4fca473fa810250dbc665e2ea60e80c098b82c..a9376960aceaba2f5af5211a45fe4f747a859582 100644
|
| --- a/Source/wtf/Functional.h
|
| +++ b/Source/wtf/Functional.h
|
| @@ -38,6 +38,9 @@ namespace WTF {
|
| // Functional.h provides a very simple way to bind a function pointer and arguments together into a function object
|
| // that can be stored, copied and invoked, similar to how boost::bind and std::bind in C++11.
|
|
|
| +// Use threadSafeBind() or createCrossThreadTask() if the function/task is
|
| +// called on a (potentially) different thread from the current thread.
|
| +
|
| // A FunctionWrapper is a class template that can wrap a function pointer or a member function pointer and
|
| // provide a unified interface for calling that function.
|
| template<typename>
|
|
|