This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Roland McGrath <roland@frob.com> writes:
> Does this fix it for you?
>
> --- firstversions.awk.~1.5.~ Sun Apr 7 19:14:19 2002
> +++ firstversions.awk Wed Aug 21 23:01:23 2002
> @@ -37,10 +37,14 @@ $1 == "}" {
> else
> break;
> }
> - if ($1 >= v || $1 == f)
> + if ($1 == f || $1 == v)
> print;
> + else if ($1 > v) {
> + print " " v;
> + print " " $1;
> + }
> else
> - print $1, "=", v;
> + print " " $1, "=", v;
> }
> else
> print;
>
Yes, it does:
$ nm attr.os |grep attr_init
0000000000000000 T __pthread_attr_init_2_1
0000000000000000 T pthread_attr_init@@GLIBC_2.2.5
Thanks,
Andreas
--
Andreas Jaeger
SuSE Labs aj@suse.de
private aj@arthur.inka.de
http://www.suse.de/~aj
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |