mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Jens Gustedt <Jens.Gustedt@inria.fr>
To: musl@lists.openwall.com
Subject: [PATCH 2/2] make the number of spins tuneable
Date: Sat, 29 Aug 2015 10:51:15 +0200	[thread overview]
Message-ID: <1440838216.693.5.camel@dysnomia.u-strasbg.fr> (raw)

---
 src/thread/__wait.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/thread/__wait.c b/src/thread/__wait.c
index a93d41d..46501cb 100644
--- a/src/thread/__wait.c
+++ b/src/thread/__wait.c
@@ -1,8 +1,14 @@
 #include "pthread_impl.h"
 
+#ifndef __WAIT_SPINS
+# define __WAIT_SPINS 100
+#endif
+
+int __wait_spins = __WAIT_SPINS;
+
 void __wait(volatile int *addr, volatile int *waiters, int val, int priv)
 {
-	int spins=100;
+	int spins=__wait_spins;
 	if (priv) priv = FUTEX_PRIVATE;
 	while (spins--) {
 		if (*addr==val) a_spin();
-- 
2.1.4



             reply	other threads:[~2015-08-29  8:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-29  8:51 Jens Gustedt [this message]
2015-08-29 17:17 ` Rich Felker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1440838216.693.5.camel@dysnomia.u-strasbg.fr \
    --to=jens.gustedt@inria.fr \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).