about summary refs log tree commit diff
path: root/nptl/tst-spin4.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-09 17:00:39 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-09 17:00:44 +0000
commit71d52ac4d65435791d8fa9f52abab7107ef7f7e8 (patch)
tree3166281a996db9450cc47a1b35a2fb54bc92f988 /nptl/tst-spin4.c
parent900778283ac3cfbd274abc55840b5cdae9b7745f (diff)
downloadglibc-71d52ac4d65435791d8fa9f52abab7107ef7f7e8.tar.gz
glibc-71d52ac4d65435791d8fa9f52abab7107ef7f7e8.tar.xz
glibc-71d52ac4d65435791d8fa9f52abab7107ef7f7e8.zip
pthread: Move spin tests from nptl to sysdeps/pthread
So they can be checked with htl too.
Diffstat (limited to 'nptl/tst-spin4.c')
-rw-r--r--nptl/tst-spin4.c108
1 files changed, 0 insertions, 108 deletions
diff --git a/nptl/tst-spin4.c b/nptl/tst-spin4.c
deleted file mode 100644
index 99fe7aa6aa..0000000000
--- a/nptl/tst-spin4.c
+++ /dev/null
@@ -1,108 +0,0 @@
-#include <pthread.h>
-#include <stdio.h>
-#include <unistd.h>
-
-static int count = 0;
-
-static void *
-thread_add_one (void *arg)
-{
-  int tmp;
-  pthread_spinlock_t *lock = (pthread_spinlock_t *) arg;
-
-  /* When do_test holds the lock for 1 sec, the two thread will be
-     in contention for the lock. */
-  if (pthread_spin_lock (lock) != 0)
-    {
-      puts ("thread_add_one(): spin_lock failed");
-      pthread_exit ((void *) 1l);
-    }
-
-  /* sleep 1s before modifying count */
-  tmp = count;
-  sleep (1);
-  count = tmp + 1;
-
-  if (pthread_spin_unlock (lock) != 0)
-    {
-      puts ("thread_add_one(): spin_unlock failed");
-      pthread_exit ((void *) 1l);
-    }
-
-  return NULL;
-}
-
-static int
-do_test (void)
-{
-  pthread_t thr1, thr2;
-  pthread_spinlock_t lock;
-  int tmp;
-
-  if (pthread_spin_init (&lock, PTHREAD_PROCESS_PRIVATE) != 0)
-    {
-      puts ("spin_init failed");
-      return 1;
-    }
-
-  if (pthread_spin_lock (&lock) != 0)
-    {
-      puts ("1st spin_lock failed");
-      return 1;
-    }
-
-  if (pthread_create (&thr1, NULL, thread_add_one, (void *) &lock) != 0)
-    {
-      puts ("1st pthread_create failed");
-      return 1;
-    }
-
-  if (pthread_create (&thr2, NULL, thread_add_one, (void *) &lock) != 0)
-    {
-      puts ("2nd pthread_create failed");
-      return 1;
-    }
-
-  /* sleep 1s before modifying count */
-  tmp = count;
-  sleep (1);
-  count = tmp + 1;
-
-  if (pthread_spin_unlock (&lock) != 0)
-    {
-      puts ("1st spin_unlock failed");
-      return 1;
-    }
-
-  void *status;
-  if (pthread_join (thr1, &status) != 0)
-    {
-      puts ("1st pthread_join failed");
-      return 1;
-    }
-  if (status != NULL)
-    {
-      puts ("failure in the 1st thread");
-      return 1;
-    }
-  if (pthread_join (thr2, &status) != 0)
-    {
-      puts ("2nd pthread_join failed");
-      return 1;
-    }
-  if (status != NULL)
-    {
-      puts ("failure in the 2nd thread");
-      return 1;
-    }
-
-  if (count != 3)
-    {
-      printf ("count is %d, should be 3\n", count);
-      return 1;
-    }
-  return 0;
-}
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"