c3a1e704 | 19-Jan-2021 |
rillig |
make(1): normalize shell error messages in tests Newly supported is bash, which outputs "bash: line 123". |
b01a7a17 | 19-Jan-2021 |
rillig |
make(1): fix tests for :gmtime and :localtime for 32-bit time_t The comparison operator had accidentally been '!=' instead of '=='. While here, proofread the documentation and add r
make(1): fix tests for :gmtime and :localtime for 32-bit time_t The comparison operator had accidentally been '!=' instead of '=='. While here, proofread the documentation and add references for where the 32-bit time_t is defined on Linux and FreeBSD.
show more ...
|
f95144f8 | 19-Jan-2021 |
riastradh |
Add note about enabling TPM and rnd(4) source. |
6b4c05ed | 19-Jan-2021 |
simonb |
The read/write/send/recv system calls return ssize_t because -1 is returned on error. Therefore we must restrict the lengths of any buffers to NETBSD32_SSIZE_MAX with compat32 to avoid garba
The read/write/send/recv system calls return ssize_t because -1 is returned on error. Therefore we must restrict the lengths of any buffers to NETBSD32_SSIZE_MAX with compat32 to avoid garbage return values. Fixes ATF lib/libc/sys/t_write:write_err.
show more ...
|
dbb56467 | 19-Jan-2021 |
thorpej |
Use device_compatible_entry / of_search_compatible() to match the clock type rather than calling of_compatible() on different sets of compatible strings. |
18c2a02d | 19-Jan-2021 |
simonb |
KNF consistency: No parentheses are needed around the return value. |
ed814948 | 19-Jan-2021 |
simonb |
Whitespace nits. |
08daffd6 | 19-Jan-2021 |
simonb |
Also print mmap return value and error code #ifdef DEBUG_MMAP. |
75f7aef2 | 19-Jan-2021 |
thorpej |
Use device_compatible_entry / of_search_compatible() for the GICv3 quirk table. |
a42b5543 | 19-Jan-2021 |
thorpej |
Use device_compatible_entry / of_search_compatible() rather than matching against multiple sets of compatibility strings. |
5efeb293 | 19-Jan-2021 |
thorpej |
Use device_compatible_entry / of_search_compatible() rather than matching against multiple sets of compatinbility strings. |
23cb51aa | 19-Jan-2021 |
thorpej |
Use device_compatible_entry / of_search_compatible() rather than matching against multiple sets of compatibility strings. |
0a885321 | 18-Jan-2021 |
jmcneill |
Fix a comment |
9bb06a1e | 18-Jan-2021 |
simonb |
s/u_intN_t/uintN_t/ |
af502900 | 18-Jan-2021 |
rillig |
lint: clean up code (mostly comments) |
9736c26d | 18-Jan-2021 |
rillig |
lint: clean up member names of control_structure and comments |
517884df | 18-Jan-2021 |
rillig |
lint: flatten check_global_variable_size |
7e2b648b | 18-Jan-2021 |
rillig |
lint: rename grammar rule lorange It looked too much like an orange. |
c3342b7a | 18-Jan-2021 |
rillig |
lint: rename grammar rules to align with C99 6.7.6 |
d785cbec | 18-Jan-2021 |
rillig |
lint: fix precedence of __builtin_offsetof A previous version of the C grammar contained TBUILTIN_SIZEOF in this place, which had two typos. Therefore it was handled as a separate t
lint: fix precedence of __builtin_offsetof A previous version of the C grammar contained TBUILTIN_SIZEOF in this place, which had two typos. Therefore it was handled as a separate token that was otherwise ignored. Curiously, bison didn't warn about this obvious inconsistency.
show more ...
|
37a0d4b1 | 18-Jan-2021 |
rillig |
lint: sort tokens in grammar |
d650f46e | 18-Jan-2021 |
rillig |
lint: rename T_SOU to T_STRUCT_OR_UNION This abbreviation occurred too seldom to be used. |
dfad713c | 18-Jan-2021 |
rillig |
lint: don't treat restrict and _Thread_local as volatile anymore |
3ba01a70 | 18-Jan-2021 |
rillig |
lint: fix assertion failure for restrict and _Thread_local |
55e1e137 | 18-Jan-2021 |
rillig |
lint: add more test cases for duplicate type qualifiers |