]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/mach/thread_state.h
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / mach / thread_state.h
index 06f168bb55bc9bee0a1bccb9a735e6854229eec2..ecd707d9c2d2e8eb2ae754caea7f6b7da8c8a859 100644 (file)
@@ -1,21 +1,20 @@
 /* Generic definitions for dealing with Mach thread states.
-Copyright (C) 1994 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
+   Copyright (C) 1994-2019 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
 
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
 
-The GNU C Library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Library General Public License for more details.
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
 
-You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB.  If
-not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
 
 
 /* Everything else is called `thread_state', but CMU's header file is
@@ -39,6 +38,12 @@ Cambridge, MA 02139, USA.  */
 #endif
 #endif
 
+/* This copies architecture-specific bits from the current thread to the new
+   thread state.  */
+#ifndef MACHINE_THREAD_STATE_FIX_NEW
+# define MACHINE_THREAD_STATE_FIX_NEW(ts)
+#endif
+
 /* These functions are of use in machine-dependent signal trampoline
    implementations.  */
 
@@ -57,7 +62,7 @@ machine_get_state (thread_t thread, struct machine_thread_all_state *state,
     }
   else
     {
-      /* Noone asked about this flavor of state before; fetch the state
+      /* No one asked about this flavor of state before; fetch the state
         directly from the kernel into the sigcontext.  */
       mach_msg_type_number_t got = (size / sizeof (int));
       return (! __thread_get_state (thread, flavor, scpptr, &got)
@@ -77,8 +82,8 @@ machine_get_basic_state (thread_t thread,
   count = MACHINE_THREAD_STATE_COUNT;
   if (__thread_get_state (thread, MACHINE_THREAD_STATE_FLAVOR,
                          (natural_t *) &state->basic,
-                         &count) != KERN_SUCCESS ||
-      count != MACHINE_THREAD_STATE_COUNT)
+                         &count) != KERN_SUCCESS
+      || count != MACHINE_THREAD_STATE_COUNT)
     /* What kind of thread?? */
     return 0;                  /* XXX */