Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 4 Apr 2004 10:52:27 +0000 (10:52 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 4 Apr 2004 10:52:27 +0000 (10:52 +0000)
2004-04-04  Ulrich Drepper  <drepper@redhat.com>

* tst-context1.c (fct): Check whether correct stack is used.

nptl/ChangeLog
nptl/tst-context1.c

index 2475f1b..c197dd4 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-04  Ulrich Drepper  <drepper@redhat.com>
+
+       * tst-context1.c (fct): Check whether correct stack is used.
+
 2004-04-03  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Never use
index ff6e381..06e432b 100644 (file)
@@ -36,9 +36,23 @@ static volatile int failures;
 static void
 fct (long int n)
 {
+  char on_stack[1];
+
   /* Just to use the thread local descriptor.  */
-  printf ("%ld: in %s now\n", n, __FUNCTION__);
+  printf ("%ld: in %s now, on_stack = %p\n", n, __FUNCTION__, on_stack);
   errno = 0;
+
+  if (n < 0 || n >= N)
+    {
+      printf ("%ld out of range\n", n);
+      exit (1);
+    }
+
+  if (on_stack < stacks[n] || on_stack >= stacks[n] + sizeof (stacks[0]))
+    {
+      printf ("%ld: on_stack not on appropriate stack\n", n);
+      exit (1);
+    }
 }