aboutsummaryrefslogtreecommitdiff
path: root/hurd/hurdpid.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-13 10:37:24 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-16 01:58:33 +0100
commitbec412424e949c900b01767ce32b6743bdaaac93 (patch)
treed4244ee3b644f5e8e68dfb5f22aeeb30065bca75 /hurd/hurdpid.c
parent18c2ab9a094f6a6cb3a107d66dafaf32f8f969f0 (diff)
downloadglibc-bec412424e949c900b01767ce32b6743bdaaac93.zip
glibc-bec412424e949c900b01767ce32b6743bdaaac93.tar.gz
glibc-bec412424e949c900b01767ce32b6743bdaaac93.tar.bz2
hurd: make lll_* take a variable instead of a ptr
To be coherent with other ports, let's make lll_* take a variable, and rename those that keep taking a ptr into __lll_*.
Diffstat (limited to 'hurd/hurdpid.c')
-rw-r--r--hurd/hurdpid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdpid.c b/hurd/hurdpid.c
index dd8281c..5607570 100644
--- a/hurd/hurdpid.c
+++ b/hurd/hurdpid.c
@@ -66,7 +66,7 @@ _S_msg_proc_newids (mach_port_t me,
/* Notify any waiting user threads that the id change as been completed. */
++_hurd_pids_changed_stamp;
- lll_wake (&_hurd_pids_changed_stamp, GSYNC_BROADCAST);
+ lll_wake (_hurd_pids_changed_stamp, GSYNC_BROADCAST);
return 0;
}