]> git.saurik.com Git - apple/libc.git/blobdiff - pthreads/thread_setup.c
Libc-339.tar.gz
[apple/libc.git] / pthreads / thread_setup.c
index 70aa4cd64573a074f32e4fd8e4c934a37558c699..53c68a4ca7f57f30c28cfd5d85bcb900fd601ffc 100644 (file)
@@ -3,6 +3,8 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
+ * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
+ * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
@@ -49,7 +51,7 @@
  * Machine specific support for thread initialization
  */
 
-#if defined(__ppc__)
+#if defined(__ppc__) || defined(__ppc64__)
 #include <architecture/ppc/cframe.h>
 #endif
 
@@ -66,7 +68,7 @@ _pthread_setup(pthread_t thread,
 {
         kern_return_t r;
         unsigned int count;
-#if defined(__ppc__)
+#if defined(__ppc__) || defined(__ppc64__)
         struct ppc_thread_state state = {0};
        struct ppc_thread_state *ts = &state;