[Webkit-unassigned] [Bug 35379] Make the context that was passed to the ThreadFunction accessible.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 25 05:34:27 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=35379


Jeremy Orlow <jorlow at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #49477|review?, commit-queue?      |review+, commit-queue-
               Flag|                            |




--- Comment #3 from Jeremy Orlow <jorlow at chromium.org>  2010-02-25 05:34:27 PST ---
(From update of attachment 49477)
r=me but because there are nits to fix, cq=-

> --- a/JavaScriptCore/wtf/ThreadingPthreads.cpp
> +++ b/JavaScriptCore/wtf/ThreadingPthreads.cpp
> @@ -53,7 +53,13 @@
>  
>  namespace WTF {
>  
> -typedef HashMap<ThreadIdentifier, pthread_t> ThreadMap;
> +typedef struct {
> +    pthread_t handle;
> +    void* context;
> +} ThreadInfo;
> +

extra new line

> +
> +typedef HashMap<ThreadIdentifier, ThreadInfo> ThreadMap;
>  
>  static Mutex* atomicallyInitializedStaticMutex;
>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list