]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix use of ucontext_t objects in tst-makecontext3
authorAndreas Schwab <schwab@redhat.com>
Tue, 13 Apr 2010 14:13:00 +0000 (07:13 -0700)
committerUlrich Drepper <drepper@redhat.com>
Tue, 13 Apr 2010 14:13:00 +0000 (07:13 -0700)
Objects of type ucontext_t cannot be copied, only getcontext can
properly initialize them.  For example, on powerpc the structure
contains a pointer into itself, so makecontext modifies the original
object by side effect.

ChangeLog
stdlib/tst-makecontext3.c

index 606bc229cc5e1f1fd4575d9dcd2038357c3361fc..be0dd160543f0cce3368730dcdaeda617c1f9a74 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-04-12  Andreas Schwab  <schwab@redhat.com>
+
+       * stdlib/tst-makecontext3.c (main): Initialize ucontext_t objects
+       only with getcontext.  Test for unimplemented makecontext by
+       checking errno.
+
 2010-04-09  Ulrich Drepper  <drepper@redhat.com>
 
        * nscd/aicache.c (addhstaiX): Correct passing memory to address
index f127c6a57986648f5e692b38275375feaa5b8cf4..a44169ae363faadc8f1e6829363ab75dd3a40335 100644 (file)
@@ -136,38 +136,42 @@ main (void)
       exit (1);
     }
 
-  ctx[1] = ctx[0];
+  if (getcontext (&ctx[1]) != 0)
+    {
+      printf ("%s: getcontext: %m\n", __FUNCTION__);
+      exit (1);
+    }
+
   ctx[1].uc_stack.ss_sp = st1;
   ctx[1].uc_stack.ss_size = sizeof st1;
   ctx[1].uc_link = &ctx[0];
-  {
-    ucontext_t tempctx = ctx[1];
-    makecontext (&ctx[1], (void (*) (void)) f1, 33,
-                0x00000001 << flag, 0x00000004 << flag,
-                0x00000012 << flag, 0x00000048 << flag,
-                0x00000123 << flag, 0x0000048d << flag,
-                0x00001234 << flag, 0x000048d1 << flag,
-                0x00012345 << flag, 0x00048d15 << flag,
-                0x00123456 << flag, 0x0048d159 << flag,
-                0x01234567 << flag, 0x048d159e << flag,
-                0x12345678 << flag, 0x48d159e2 << flag,
-                0x23456789 << flag, 0x8d159e26 << flag,
-                0x3456789a << flag, 0xd159e26a << flag,
-                0x456789ab << flag, 0x159e26af << flag,
-                0x56789abc << flag, 0x59e26af3 << flag,
-                0x6789abcd << flag, 0x9e26af37 << flag,
-                0x789abcde << flag, 0xe26af37b << flag,
-                0x89abcdef << flag, 0x26af37bc << flag,
-                0x9abcdef0 << flag, 0x6af37bc3 << flag,
-                0xabcdef0f << flag);
-
-    /* Without this check, a stub makecontext can make us spin forever.  */
-    if (memcmp (&tempctx, &ctx[1], sizeof ctx[1]) == 0)
-      {
-       puts ("makecontext was a no-op, presuming not implemented");
-       return 0;
-      }
-  }
+  errno = 0;
+  makecontext (&ctx[1], (void (*) (void)) f1, 33,
+              0x00000001 << flag, 0x00000004 << flag,
+              0x00000012 << flag, 0x00000048 << flag,
+              0x00000123 << flag, 0x0000048d << flag,
+              0x00001234 << flag, 0x000048d1 << flag,
+              0x00012345 << flag, 0x00048d15 << flag,
+              0x00123456 << flag, 0x0048d159 << flag,
+              0x01234567 << flag, 0x048d159e << flag,
+              0x12345678 << flag, 0x48d159e2 << flag,
+              0x23456789 << flag, 0x8d159e26 << flag,
+              0x3456789a << flag, 0xd159e26a << flag,
+              0x456789ab << flag, 0x159e26af << flag,
+              0x56789abc << flag, 0x59e26af3 << flag,
+              0x6789abcd << flag, 0x9e26af37 << flag,
+              0x789abcde << flag, 0xe26af37b << flag,
+              0x89abcdef << flag, 0x26af37bc << flag,
+              0x9abcdef0 << flag, 0x6af37bc3 << flag,
+              0xabcdef0f << flag);
+
+  /* Without this check, a stub makecontext can make us spin forever.  */
+  if (errno == ENOSYS)
+    {
+      puts ("makecontext not implemented");
+      back_in_main = 1;
+      return 0;
+    }
 
   /* Play some tricks with this context.  */
   if (++global == 1)