FreeBSD Bugzilla – Attachment 207172 Details for
Bug 210855
benchmarks/bonnie++ : use of volatile char messes up EOF comparison; more (armv6 with -mcpu=cortex-a7 for/on rpi2) - update to 1.98
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
patch-getc_putc.cpp
patch-getc_putc.cpp (text/plain), 720 bytes, created by
Walter Schwarzenfeld
on 2019-09-04 01:52:18 UTC
(
hide
)
Description:
patch-getc_putc.cpp
Filename:
MIME Type:
Creator:
Walter Schwarzenfeld
Created:
2019-09-04 01:52:18 UTC
Size:
720 bytes
patch
obsolete
>--- getc_putc.cpp.orig 2019-09-04 00:03:29 UTC >+++ getc_putc.cpp >@@ -206,7 +206,7 @@ int main(int argc, char *argv[]) > return 1; > } > fflush(NULL); >- TEST_FUNC_READ("getc()", if( (c = getc(fp)) == EOF), res[Getc]); >+ TEST_FUNC_READ("getc()", if( (c = getc(fp)) == (unsigned char)EOF), res[Getc]); > if(fseek(fp, 0, SEEK_SET) != 0) > { > fprintf(stderr, "Can't seek.\n"); >@@ -221,7 +221,7 @@ int main(int argc, char *argv[]) > return 1; > } > fflush(NULL); >- TEST_FUNC_READ("getc_unlocked()", if( (c = getc_unlocked(fp)) == EOF), res[GetcUnlocked]); >+ TEST_FUNC_READ("getc_unlocked()", if( (c = getc_unlocked(fp)) == (unsigned char)EOF), res[GetcUnlocked]); > > if(!quiet) > printf("done\n"); > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 210855
:
207097
|
207131
|
207156
|
207172
|
207173
|
207198
|
207210