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

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

Issue 1843333003: Update NSPR to 4.12 and NSS to 3.23 on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/nss.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 diff --git a/pr/src/md/windows/w95thred.c b/pr/src/md/windows/w95thred.c 1 diff --git a/nspr/pr/src/md/windows/w95thred.c b/nspr/pr/src/md/windows/w95thred .c
2 index f5c7703..b2cebae 100644 2 index 52bfb02..2741d94 100644
3 --- a/pr/src/md/windows/w95thred.c 3 --- a/nspr/pr/src/md/windows/w95thred.c
4 +++ b/pr/src/md/windows/w95thred.c 4 +++ b/nspr/pr/src/md/windows/w95thred.c
5 @@ -313,7 +313,7 @@ PRThread *thread; 5 @@ -318,7 +318,7 @@ PRThread *thread;
6 6
7 if (NULL == thread) { 7 if (NULL == thread) {
8 thread = _PRI_AttachThread( 8 thread = _PRI_AttachThread(
9 - PR_USER_THREAD, PR_PRIORITY_NORMAL, NULL, 0); 9 - PR_USER_THREAD, PR_PRIORITY_NORMAL, NULL, 0);
10 + PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, NULL, 0); 10 + PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, NULL, 0);
11 } 11 }
12 PR_ASSERT(thread != NULL); 12 PR_ASSERT(thread != NULL);
13 return thread; 13 return thread;
OLDNEW
« nss/lib/util/secoid.c ('K') | « nss/lib/util/utilpars.c ('k') | patches/nspr-static.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698