Mercurial > trustbridge > nss-cmake-static
comparison patches/nspr-attach-as-system-thread.patch @ 0:1e5118fa0cb1
This is NSS with a Cmake Buildsyste
To compile a static NSS library for Windows we've used the
Chromium-NSS fork and added a Cmake buildsystem to compile
it statically for Windows. See README.chromium for chromium
changes and README.trustbridge for our modifications.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 28 Jul 2014 10:47:06 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1e5118fa0cb1 |
---|---|
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.22 | |
5 diff -p -u -r3.22 w95thred.c | |
6 --- mozilla/nsprpub/pr/src/md/windows/w95thred.c 13 Jun 2012 02:17:05 -0000 3.22 | |
7 +++ mozilla/nsprpub/pr/src/md/windows/w95thred.c 29 Jan 2013 01:16:53 -0000 | |
8 @@ -313,7 +313,7 @@ PRThread *thread; | |
9 | |
10 if (NULL == thread) { | |
11 thread = _PRI_AttachThread( | |
12 - PR_USER_THREAD, PR_PRIORITY_NORMAL, NULL, 0); | |
13 + PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, NULL, 0); | |
14 } | |
15 PR_ASSERT(thread != NULL); | |
16 return thread; |