Chris Metcalf 1827059925 tile: use better variable naming in INLINE_SYSCALL
At issue for INLINE_SYSCALL was that it used "err" and "val"
as variable names in a #define, so that if it was used in a context
where the "caller" was also using "err" or "val", and those
variables were passed in to INLINE_SYSCALL, we would end up
referencing the internal shadowed variables instead.

For example, "char val" in check_may_shrink_heap() in
sysdeps/unix/sysv/linux/malloc-sysdep.h was being shadowed by
the syscall return "val" in INLINE_SYSCALL, causing the "char val"
not to get updated at all, and may_shrink_heap ended up always false.

A similar fix was made to INTERNAL_VSYSCALL_CALL.
2015-05-26 20:29:56 -04:00
..
2015-05-19 09:43:54 -07:00
2015-02-08 18:46:00 +01:00
2015-03-21 04:49:44 +01:00
2015-05-26 16:11:46 -07:00
2015-04-20 08:51:17 -03:00
2015-03-06 11:32:24 +01:00
2015-04-24 13:37:48 +02:00
2015-04-16 09:40:21 -04:00