update NSPR to 4.24 and keep NSPR Bug 1586070 and win64 patch intact.

This commit is contained in:
Roy Tam 2020-01-03 13:34:04 +08:00
commit 0b9855b841
487 changed files with 42933 additions and 48679 deletions

View file

@ -8,17 +8,10 @@
#include <stdio.h>
#ifdef SYMBIAN
#define SHM_NAME "c:\\data\\counter"
#define SEM_NAME1 "c:\\data\\foo.sem"
#define SEM_NAME2 "c:\\data\\bar.sem"
#define EXE_NAME "nspr_tests_semapong.exe"
#else
#define SHM_NAME "/tmp/counter"
#define SEM_NAME1 "/tmp/foo.sem"
#define SEM_NAME2 "/tmp/bar.sem"
#define EXE_NAME "semapong"
#endif
#define SEM_MODE 0666
#define SHM_MODE 0666
#define ITERATIONS 1000
@ -49,7 +42,9 @@ int main(int argc, char **argv)
PLOptState *opt = PL_CreateOptState(argc, argv, "dc:h");
while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) {
if (PL_OPT_BAD == os) continue;
if (PL_OPT_BAD == os) {
continue;
}
switch (opt->option) {
case 'd': /* debug mode */
debug_mode = PR_TRUE;
@ -129,7 +124,9 @@ int main(int argc, char **argv)
exit(1);
}
if (*counter_addr == 2*i) {
if (debug_mode) printf("process 1: counter = %d\n", *counter_addr);
if (debug_mode) {
printf("process 1: counter = %d\n", *counter_addr);
}
} else {
fprintf(stderr, "process 1: counter should be %d but is %d\n",
2*i, *counter_addr);