diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-09 23:44:05 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-09 23:44:05 +0100 |
commit | 5048fd2133f1b41cc5ce1f79b75cb8022de2ceea (patch) | |
tree | 40fe57b0dff6c3bb177ffaed32fe9bc24a5d0b52 | |
parent | f0a4049880b29a5fab7ab3b21ab6756f3173394e (diff) |
pthread_setname_np is done
-rw-r--r-- | contributing.mdwn | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contributing.mdwn b/contributing.mdwn index b28fe0a7..2185b8a5 100644 --- a/contributing.mdwn +++ b/contributing.mdwn @@ -91,7 +91,6 @@ with". Make sure to check out the most up-to-date version on <https://darnassus.sceen.net/~hurd-web/contributing> * Teach rsync to use `*getxattr` and friends on GNU/Hurd too, to enable the -X option, so as to preserve translator entries. -* Use `thread_set_name` to add `pthread_setname_np` to glibc. * Avoid GCC trampolines: as discussed in <https://gcc.gnu.org/onlinedocs/gccint/Trampolines.html> these happen when we pass the address of a nested function to another function. This can be seen by running `readelf -S file.o | grep GNU-stack | grep X`, for instance that happens in libdiskfs/file-exec.c, libdiskfs/io-revoke.c. We can't really use -fno-trampoline, we should instead add `void *data` parameters to iterators such as `ports_class_iterate` or `fshelp_exec_reauth`, so that the nested functions can be made mere static functions that get their information from the `void *data` parameter. * Implement `pthread_setschedparam` and `sched_setscheduler` in glibc by calling mach's `thread_policy` and `thread_priority`. * Strengthen httpfs: it should append '/' to URL automatically, it should not fallback index.html itself, etc. probably a lot more small easy issues. |