Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: nss/patches/nspr-attach-as-system-thread.patch

Issue 3113004: Replace the workaround for bug 40663 by the real fix.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nss/mozilla/nsprpub/pr/src/md/windows/w95thred.c ('k') | nss/patches/nspr-static.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: mozilla/nsprpub/pr/src/md/windows/w95thred.c
2 ===================================================================
3 RCS file: /cvsroot/mozilla/nsprpub/pr/src/md/windows/w95thred.c,v
4 retrieving revision 3.18
5 diff -u -p -u -8 -r3.18 w95thred.c
6 --- mozilla/nsprpub/pr/src/md/windows/w95thred.c 4 Feb 2009 23:44:01 -000 0 3.18
7 +++ mozilla/nsprpub/pr/src/md/windows/w95thred.c 20 Apr 2010 18:06:13 -00 00
8 @@ -304,13 +304,13 @@ PRThread*
9 _MD_CURRENT_THREAD(void)
10 {
11 PRThread *thread;
12
13 thread = _MD_GET_ATTACHED_THREAD();
14
15 if (NULL == thread) {
16 thread = _PRI_AttachThread(
17 - PR_USER_THREAD, PR_PRIORITY_NORMAL, NULL, 0);
18 + PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, NULL, 0);
19 }
20 PR_ASSERT(thread != NULL);
21 return thread;
22 }
OLDNEW
« no previous file with comments | « nss/mozilla/nsprpub/pr/src/md/windows/w95thred.c ('k') | nss/patches/nspr-static.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698