This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 1/4] Define INLINE_VSYSCALL on all ports


> 	* sysdeps/unix/sysv/linux/alpha/sysdep.h [INLINE_VSYSCALL]: Define
> 	INLINE_SYSCALL.

The [foo] syntax corresponds to an '#if foo' block.  The (foo) syntax is
what you use when foo is what you touched, whether it's a function,
variable, macro, type, or whatever.  A coherent entry for what the change
actually does would be:

	* sysdeps/unix/sysv/linux/alpha/sysdep.h (INLINE_VSYSCALL):
	New macro; just use INLINE_SYSCALL.

But repeating boilerplate like this across a lot of sysdeps files is
usually a sign that you're doing it wrong.  Why not instead have some
common place that does:

#ifndef INLINE_VSYSCALL
# define INLINE_VSYSCALL INLINE_SYSCALL
#endif

?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]