Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
glibc
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
glibc
Merge requests
!26
Update from debian/bookworm for apertis/v2024dev2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update from debian/bookworm for apertis/v2024dev2
proposed-updates/debian/bookworm/b3c7dd74
into
apertis/v2024dev2
Overview
9
Commits
7
Pipelines
7
Changes
459+
All threads resolved!
Hide all comments
Merged
Apertis CI robot
requested to merge
proposed-updates/debian/bookworm/b3c7dd74
into
apertis/v2024dev2
2 years ago
Overview
9
Commits
7
Pipelines
7
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
version 4
version 6
d2e4fca2
1 year ago
version 5
8b296265
1 year ago
version 4
bf22ea1e
2 years ago
version 3
7f14aea2
2 years ago
version 2
328fbe77
2 years ago
version 1
a384afc0
2 years ago
apertis/v2024dev2 (base)
and
version 5
latest version
ccc152e9
7 commits,
1 year ago
version 6
d2e4fca2
8 commits,
1 year ago
version 5
8b296265
7 commits,
1 year ago
version 4
bf22ea1e
7 commits,
2 years ago
version 3
7f14aea2
6 commits,
2 years ago
version 2
328fbe77
5 commits,
2 years ago
version 1
a384afc0
3 commits,
2 years ago
Show latest version
1 file
+
34
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
debian/patches/kfreebsd/local-fbtl.diff
+
34
−
0
Options
@@ -14125,6 +14125,40 @@
+.NOTPARALLEL:
+endif
--- /dev/null
+++ b/fbtl/TODO
@@ -0,0 +1,31 @@
+- we should probably extend pthread_mutexattr_t with a field to create a
+ single linked list of all instances. This requires changing the
+ pthread_mutexattr_* functions.
+
+
+- a new attribute for mutexes: number of times we spin before calling
+sys_futex
+
+- for adaptive mutexes: when releasing, determine whether somebody spins.
+If yes, for a short time release lock. If someone else locks no wakeup
+syscall needed.
+
+
+
+- test with threaded process terminating and semadj (?) being applied
+ only after all threads are gone
+
+
+
+- semaphore changes:
+
+ - sem_post should only wake one thread and only when the state of
+ the semaphore changed from 0 to 1
+
+ this also requires that sem_wait and sem_timedwait don't drop the
+ post if they get canceled.
+
+ - possibly add counter field. This requires reviving the
+ differences between old and new semaphose funtions. The old ones
+ stay as they are now. The new once can use an additional field
+ wich is the counter for the number of waiters
--- /dev/null
+++ b/fbtl/TODO-kernel
@@ -0,0 +1,20 @@
+- setuid/setgid must effect process
Loading