mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 10:57:34 +09:00
update NSPR to 4.24 and keep NSPR Bug 1586070 and win64 patch intact.
This commit is contained in:
parent
dd094ae552
commit
0b9855b841
487 changed files with 42933 additions and 48679 deletions
|
|
@ -94,7 +94,7 @@ int main(int argc, char **argv)
|
|||
}
|
||||
|
||||
pongThread = PR_CreateThread(PR_USER_THREAD, PongThreadFunc, NULL,
|
||||
PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD, PR_JOINABLE_THREAD, 0);
|
||||
PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD, PR_JOINABLE_THREAD, 0);
|
||||
if (pongThread == NULL) {
|
||||
fprintf(stderr, "PR_CreateThread failed\n");
|
||||
exit(1);
|
||||
|
|
@ -144,72 +144,72 @@ int main(int argc, char **argv)
|
|||
exit(1);
|
||||
}
|
||||
|
||||
#if defined(XP_UNIX) && !defined(SYMBIAN)
|
||||
/*
|
||||
* Test PR_Available for pipes
|
||||
*/
|
||||
#if defined(XP_UNIX)
|
||||
/*
|
||||
* Test PR_Available for pipes
|
||||
*/
|
||||
status = PR_CreatePipe(&ping_in, &ping_out);
|
||||
if (status == PR_FAILURE) {
|
||||
fprintf(stderr, "PR_CreatePipe failed\n");
|
||||
exit(1);
|
||||
}
|
||||
nBytes = PR_Write(ping_out, buf, 250);
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Write failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
}
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != 250) {
|
||||
fprintf(stderr, "PR_Available: expected 250 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n",250, nBytes);
|
||||
/* read some data */
|
||||
nBytes = PR_Read(ping_in, buf, 7);
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Read failed\n");
|
||||
exit(1);
|
||||
}
|
||||
/* check available data */
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != (250 - 7)) {
|
||||
fprintf(stderr, "PR_Available: expected 243 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n",243, nBytes);
|
||||
/* read all data */
|
||||
nBytes = PR_Read(ping_in, buf, sizeof(buf));
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Read failed\n");
|
||||
exit(1);
|
||||
} else if (nBytes != 243) {
|
||||
fprintf(stderr, "PR_Read failed: expected %d, got %d bytes\n",
|
||||
243, nBytes);
|
||||
exit(1);
|
||||
}
|
||||
/* check available data */
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != 0) {
|
||||
fprintf(stderr, "PR_Available: expected 0 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n", 0, nBytes);
|
||||
nBytes = PR_Write(ping_out, buf, 250);
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Write failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
}
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != 250) {
|
||||
fprintf(stderr, "PR_Available: expected 250 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n",250, nBytes);
|
||||
/* read some data */
|
||||
nBytes = PR_Read(ping_in, buf, 7);
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Read failed\n");
|
||||
exit(1);
|
||||
}
|
||||
/* check available data */
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != (250 - 7)) {
|
||||
fprintf(stderr, "PR_Available: expected 243 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n",243, nBytes);
|
||||
/* read all data */
|
||||
nBytes = PR_Read(ping_in, buf, sizeof(buf));
|
||||
if (nBytes == -1) {
|
||||
fprintf(stderr, "PR_Read failed\n");
|
||||
exit(1);
|
||||
} else if (nBytes != 243) {
|
||||
fprintf(stderr, "PR_Read failed: expected %d, got %d bytes\n",
|
||||
243, nBytes);
|
||||
exit(1);
|
||||
}
|
||||
/* check available data */
|
||||
nBytes = PR_Available(ping_in);
|
||||
if (nBytes < 0) {
|
||||
fprintf(stderr, "PR_Available failed: (%d, %d)\n", PR_GetError(),
|
||||
PR_GetOSError());
|
||||
exit(1);
|
||||
} else if (nBytes != 0) {
|
||||
fprintf(stderr, "PR_Available: expected 0 bytes but got %d bytes\n",
|
||||
nBytes);
|
||||
exit(1);
|
||||
}
|
||||
printf("PR_Available: expected %d, got %d bytes\n", 0, nBytes);
|
||||
|
||||
status = PR_Close(ping_in);
|
||||
if (status == PR_FAILURE) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue