mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Break lines before not after operators, batch 4.
This patch fixes further coding style issues where code should have broken lines before operators in accordance with the GNU Coding Standards but instead was breaking lines after them. Tested for x86_64, and with build-many-glibcs.py. * stdio-common/vfscanf-internal.c (ARG): Break lines before rather than after operators. * sysdeps/mach/hurd/setitimer.c (timer_thread): Likewise. (setitimer_locked): Likewise. * sysdeps/mach/hurd/sigaction.c (__sigaction): Likewise. * sysdeps/mach/hurd/sigaltstack.c (__sigaltstack): Likewise. * sysdeps/mach/pagecopy.h (PAGE_COPY_FWD): Likewise. * sysdeps/mach/thread_state.h (machine_get_basic_state): Likewise. * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c (PPC_CPU_SUPPORTED): Likewise. * sysdeps/unix/sysv/linux/alpha/a.out.h (N_TXTOFF): Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h (stat_overflow): Likewise. (statfs_overflow): Likewise. * sysdeps/unix/sysv/linux/tst-personality.c (do_test): Likewise. * sysdeps/unix/sysv/linux/tst-ttyname.c (eq_ttyname): Likewise. (eq_ttyname_r): Likewise. (run_chroot_tests): Likewise.
This commit is contained in:
@ -123,9 +123,9 @@ enum machine_type
|
||||
&& N_MAGIC(x) != ZMAGIC && N_MAGIC(x) != QMAGIC)
|
||||
#define _N_HDROFF(x) (1024 - sizeof (struct exec))
|
||||
#define N_TXTOFF(x) \
|
||||
((long) N_MAGIC(x) == ZMAGIC ? 0 : \
|
||||
(sizeof (struct exec) + (x).fh.f_nscns * SCNHSZ + SCNROUND - 1) \
|
||||
& ~(SCNROUND - 1))
|
||||
((long) N_MAGIC(x) == ZMAGIC ? 0 \
|
||||
: ((sizeof (struct exec) + (x).fh.f_nscns * SCNHSZ + SCNROUND - 1) \
|
||||
& ~(SCNROUND - 1)))
|
||||
|
||||
#define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text)
|
||||
#define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data)
|
||||
|
@ -36,8 +36,8 @@ static inline off_t lseek_overflow (loff_t res)
|
||||
|
||||
static inline int stat_overflow (struct stat *buf)
|
||||
{
|
||||
if (buf->__st_ino_pad == 0 && buf->__st_size_pad == 0 &&
|
||||
buf->__st_blocks_pad == 0)
|
||||
if (buf->__st_ino_pad == 0 && buf->__st_size_pad == 0
|
||||
&& buf->__st_blocks_pad == 0)
|
||||
return 0;
|
||||
|
||||
__set_errno (EOVERFLOW);
|
||||
@ -47,12 +47,12 @@ static inline int stat_overflow (struct stat *buf)
|
||||
/* Note that f_files and f_ffree may validly be a sign-extended -1. */
|
||||
static inline int statfs_overflow (struct statfs *buf)
|
||||
{
|
||||
if (buf->__f_blocks_pad == 0 && buf->__f_bfree_pad == 0 &&
|
||||
buf->__f_bavail_pad == 0 &&
|
||||
(buf->__f_files_pad == 0 ||
|
||||
(buf->f_files == -1U && buf->__f_files_pad == -1)) &&
|
||||
(buf->__f_ffree_pad == 0 ||
|
||||
(buf->f_ffree == -1U && buf->__f_ffree_pad == -1)))
|
||||
if (buf->__f_blocks_pad == 0 && buf->__f_bfree_pad == 0
|
||||
&& buf->__f_bavail_pad == 0
|
||||
&& (buf->__f_files_pad == 0
|
||||
|| (buf->f_files == -1U && buf->__f_files_pad == -1))
|
||||
&& (buf->__f_ffree_pad == 0
|
||||
|| (buf->f_ffree == -1U && buf->__f_ffree_pad == -1)))
|
||||
return 0;
|
||||
|
||||
__set_errno (EOVERFLOW);
|
||||
|
@ -30,11 +30,11 @@ do_test (void)
|
||||
errno = 0xdefaced;
|
||||
saved_persona = personality (0xffffffff);
|
||||
|
||||
if (personality (test_persona) != saved_persona ||
|
||||
personality (0xffffffff) == -1 ||
|
||||
personality (PER_LINUX) == -1 ||
|
||||
personality (0xffffffff) != PER_LINUX ||
|
||||
0xdefaced != errno)
|
||||
if (personality (test_persona) != saved_persona
|
||||
|| personality (0xffffffff) == -1
|
||||
|| personality (PER_LINUX) == -1
|
||||
|| personality (0xffffffff) != PER_LINUX
|
||||
|| 0xdefaced != errno)
|
||||
rc = 1;
|
||||
|
||||
(void) personality (saved_persona);
|
||||
|
@ -103,9 +103,9 @@ eq_ttyname (struct result actual, struct result expected)
|
||||
{
|
||||
char *actual_name, *expected_name;
|
||||
|
||||
if ((actual.err == expected.err) &&
|
||||
(!actual.name == !expected.name) &&
|
||||
(actual.name ? strcmp (actual.name, expected.name) == 0 : true))
|
||||
if ((actual.err == expected.err)
|
||||
&& (!actual.name == !expected.name)
|
||||
&& (actual.name ? strcmp (actual.name, expected.name) == 0 : true))
|
||||
{
|
||||
if (expected.name)
|
||||
expected_name = xasprintf ("\"%s\"", expected.name);
|
||||
@ -169,10 +169,10 @@ eq_ttyname_r (struct result_r actual, struct result_r expected)
|
||||
{
|
||||
char *actual_name, *expected_name;
|
||||
|
||||
if ((actual.err == expected.err) &&
|
||||
(actual.ret == expected.ret) &&
|
||||
(!actual.name == !expected.name) &&
|
||||
(actual.name ? strcmp (actual.name, expected.name) == 0 : true))
|
||||
if ((actual.err == expected.err)
|
||||
&& (actual.ret == expected.ret)
|
||||
&& (!actual.name == !expected.name)
|
||||
&& (actual.name ? strcmp (actual.name, expected.name) == 0 : true))
|
||||
{
|
||||
if (expected.name)
|
||||
expected_name = xasprintf ("\"%s\"", expected.name);
|
||||
@ -570,9 +570,9 @@ run_chroot_tests (const char *slavename, int slave)
|
||||
struct dirent *d;
|
||||
while ((d = readdir (dirstream)) != NULL && ci < 3)
|
||||
{
|
||||
if (strcmp (d->d_name, "console1") &&
|
||||
strcmp (d->d_name, "console2") &&
|
||||
strcmp (d->d_name, "console3") )
|
||||
if (strcmp (d->d_name, "console1")
|
||||
&& strcmp (d->d_name, "console2")
|
||||
&& strcmp (d->d_name, "console3") )
|
||||
continue;
|
||||
c[ci++] = xasprintf ("/dev/%s", d->d_name);
|
||||
}
|
||||
|
Reference in New Issue
Block a user