Re: [PATCH 0/4] move some htl symbol into libc

2022-10-29 Thread Guy-Fleury Iteriteka
On October 29, 2022 3:34:38 PM GMT+02:00, Samuel Thibault wrote: >Hello, > >Guy-Fleury Iteriteka, le sam. 29 oct. 2022 12:56:22 +0100, a ecrit: >> Samuel can you help moving the pthread_self into libc as an >> example so that i can go ahead and move others that are not difficult >> for me. > >

Re: [PATCH 0/4] move some htl symbol into libc

2022-10-29 Thread Samuel Thibault
Hello, Guy-Fleury Iteriteka, le sam. 29 oct. 2022 12:56:22 +0100, a ecrit: > Samuel can you help moving the pthread_self into libc as an > example so that i can go ahead and move others that are not difficult > for me. I'd say contact on libc-alpha the people who did it on Linux, they do know the

[PATCH 1/4] htl: move __pthread-total into libc.

2022-10-29 Thread Guy-Fleury Iteriteka
* htl/Makefile(routine): add pt-total. htl/Versions(libc[PRIVATE]): add __pthread-total. htl/pt-create.c(__pthread-total): remove it htl/pt-total.c: New file. htl/pt-total.c(__pthread-total): move definition here. htl/pt-internal(__pthread-total): add to it libc_hidden_proto

[PATCH 4/4] htl: move pthread_self into libc

2022-10-29 Thread Guy-Fleury Iteriteka
--- htl/Makefile | 3 +-- htl/Versions | 7 +++ htl/forward.c | 4 htl/pt-initialize.c | 1 - sysdeps/htl/pthread-functions.h | 2 -- sysdeps/mach/hurd/i386/libc.abilist

[PATCH 3/4] htl: move pthread_equal into libc

2022-10-29 Thread Guy-Fleury Iteriteka
--- htl/Makefile | 3 +-- htl/Versions | 2 +- htl/forward.c | 4 htl/pt-initialize.c | 1 - sysdeps/htl/pthread-functions.h | 2 -- sysdeps/mach/hurd/i386/libc.abilist

[PATCH 2/4] htl: move ___pthread_self to libc

2022-10-29 Thread Guy-Fleury Iteriteka
htl/Makefile(routine): add pt-dep-self htl/Versions(___pthread_self): add to libc symbol sysdeps/mach/hurd/htl/pt-dep-self.c: New file sysdeps/mach/hurd/htl/pt-sysdep.c(___pthread_seld): remove definition. sysdeps/mach/hurd/htl/pt-sysdep.h(___pthread_self):

[PATCH 0/4] move some htl symbol into libc

2022-10-29 Thread Guy-Fleury Iteriteka
Hello, Samuel can you help moving the pthread_self into libc as an example so that i can go ahead and move others that are not difficult for me. pthread_equal is removed from libpthread.so but with the patch for pthread_self is in both libc.so and libpthread.so. this is libpthread.so ---