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 COMMITTED] resolv: Replace __builtin_expect with __glibc_unlikely/__glibc_likely


On Apr 19 2017, fweimer@redhat.com (Florian Weimer) wrote:

> @@ -633,7 +633,7 @@ getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
>  			packtmp, sizeof packtmp);
>    if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
>      {
> -      if (__builtin_expect (errno, 0) == EMSGSIZE)
> +      if (__glibc_unlikely (errno) == EMSGSIZE)
            (__glibc_unlikely (errno == EMSGSIZE))

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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