]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
archive.c, [...]: Include hash.h.
authorDavid Ayers <d.ayers@inode.at>
Tue, 7 Jun 2005 21:04:19 +0000 (23:04 +0200)
committerDavid Ayers <ayers@gcc.gnu.org>
Tue, 7 Jun 2005 21:04:19 +0000 (21:04 +0000)
2005-06-07  David Ayers  <d.ayers@inode.at>

* archive.c, init.c, selector.c: Include hash.h.
* archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
Include Objective-C headers with quotes and objc/ directory
prefix.

From-SVN: r100723

28 files changed:
libobjc/ChangeLog
libobjc/archive.c
libobjc/class.c
libobjc/encoding.c
libobjc/gc.c
libobjc/hash.c
libobjc/hash_compat.c
libobjc/init.c
libobjc/misc.c
libobjc/nil_method.c
libobjc/objects.c
libobjc/sarray.c
libobjc/selector.c
libobjc/sendmsg.c
libobjc/thr-dce.c
libobjc/thr-decosf1.c
libobjc/thr-irix.c
libobjc/thr-mach.c
libobjc/thr-objc.c
libobjc/thr-os2.c
libobjc/thr-posix.c
libobjc/thr-pthreads.c
libobjc/thr-rtems.c
libobjc/thr-single.c
libobjc/thr-solaris.c
libobjc/thr-vxworks.c
libobjc/thr-win32.c
libobjc/thr.c

index c4d0abfa8cee92076602f9f774d9f5852e9f2a5d..59a861ec9997ab4a4f948dc06bb7cfa38066eb0c 100644 (file)
@@ -1,3 +1,14 @@
+2005-06-07  David Ayers  <d.ayers@inode.at>
+
+       * archive.c, init.c, selector.c: Include hash.h.
+       * archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
+       init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
+       sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
+       thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
+       thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
+       Include Objective-C headers with quotes and objc/ directory
+       prefix.
+
 2005-05-19  Richard Henderson  <rth@redhat.com>
 
        * exception.c: Revert last change.
index 5c3616ca329fb5a6c2a189e65c8e1da5e1ff666b..3bfd975a18a124fe908d93bbb52a47041d02f6b3 100644 (file)
@@ -25,9 +25,9 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include "tconfig.h"
-#include "runtime.h"
-#include "typedstream.h"
-#include "encoding.h"
+#include "objc/runtime.h"
+#include "objc/typedstream.h"
+#include "objc/encoding.h"
 #include <stdlib.h>
 
 extern int fflush (FILE *);
index 9638f5d37844aff381f841cb4bcfa199d34bef54..2140652ff1e4b7065fad04e9f46934d152ba7ec7 100644 (file)
@@ -88,12 +88,12 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
   classes from the table - and the difficult thing with lock-free data
   structures is freeing data when is removed from the structures.  */
 
-#include "runtime.h"            /* the kitchen sink */
-#include "sarray.h"
+#include "objc/runtime.h"            /* the kitchen sink */
+#include "objc/sarray.h"
 
-#include <objc/objc.h>
-#include <objc/objc-api.h>
-#include <objc/thr.h>
+#include "objc/objc.h"
+#include "objc/objc-api.h"
+#include "objc/thr.h"
 
 /* We use a table which maps a class name to the corresponding class
  * pointer.  The first part of this file defines this table, and
index 7f71276b55637a3c39ac75b797329b514519f2eb..95cf65277364f065116aa37fffe7467e5ae5dfb5 100644 (file)
@@ -32,8 +32,8 @@ Boston, MA 02111-1307, USA.  */
 #include "tconfig.h"
 #include "coretypes.h"
 #include "tm.h"
-#include "objc-api.h"
-#include "encoding.h"
+#include "objc/objc-api.h"
+#include "objc/encoding.h"
 #include <stdlib.h>
 
 #undef  MAX
index 66aa78a32ee9540a1a80715387ecfefd05ac0cd0..a4766894ab39aa79871247fcfbf3e1597fe3c5e8 100644 (file)
@@ -26,8 +26,8 @@ Boston, MA 02111-1307, USA.  */
    the executable file might be covered by the GNU General Public License.  */
 
 #include "tconfig.h"
-#include "objc.h"
-#include "encoding.h"
+#include "objc/objc.h"
+#include "objc/encoding.h"
 
 #include <assert.h>
 #include <string.h>
index e2072b605f78aad30ddf4eb71678f17ea40a0dc6..a32279cd7a70ab46569e7c4482e6bf64ee1b07be 100644 (file)
@@ -26,9 +26,9 @@ Boston, MA 02111-1307, USA.  */
 
 #include "assert.h"
 
-#include "hash.h"
+#include "objc/hash.h"
 
-#include "runtime.h"           /* for DEBUG_PRINTF */
+#include "objc/runtime.h"              /* for DEBUG_PRINTF */
 
 /* These two macros determine when a hash table is full and
    by how much it should be expanded respectively.
index 46c273858a63926271fe1c797e69dd03a947fa0a..905b9e43c679e497ade1f550d8782fd337461f52 100644 (file)
@@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA.  */
    the executable file might be covered by the GNU General Public License.  */
 
 #define OBJC_IGNORE_DEPRECATED_API 1
-#include "hash.h"
+#include "objc/hash.h"
 
 cache_ptr
 hash_new (unsigned int size,
index 3eb53866f38a6d0b704ec379f96031d31cd7dc0b..40d9016e239726489180bd6398665c8ad7d6edbd 100644 (file)
@@ -24,7 +24,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include "runtime.h"
+#include "objc/runtime.h"
 
 /* The version number of this runtime.  This must match the number 
    defined in gcc (objc-act.c).  */
index 3ae8a55cfe6659f126f88e3973de5f7dc0ffc388..fd9561f45448292bb020db48ef90dad4164aa915 100644 (file)
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA.  */
 
 #define __USE_FIXED_PROTOTYPES__
 #include <stdlib.h>
-#include "runtime.h"
+#include "objc/runtime.h"
 
 /*
 ** Error handler function
index d35ccdc92bb878445aed40aac3a5961a2a4bebaf..e1802aa107d52c272e22a88f660e7cd17fd605b7 100644 (file)
@@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA.  */
 /* This is the nil method, the function that is called when the receiver
    of a method is nil */
 
-#include "runtime.h"
+#include "objc/runtime.h"
 
 /* When the receiver of a method invocation is nil, the runtime
    returns nil_method() as the method implementation.  This function
index e4920a650a8cc946d7065c614fabdc18db8bdc6d..c3732e3a444e5d1e841686bd662f439ff4815644 100644 (file)
@@ -25,8 +25,8 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include "tconfig.h"         /* include defs of bzero for target */
-#include "objc.h"
-#include "runtime.h"           /* the kitchen sink */
+#include "objc/objc.h"
+#include "objc/runtime.h"              /* the kitchen sink */
 
 #if OBJC_WITH_GC
 # include <gc.h>
index e7e69a9e8ce4dc40d74bbe7ec49bbe307a35c19a..f07097ac2093ebf47b13fca9da3495494ff8b7ea 100644 (file)
@@ -24,8 +24,8 @@ Boston, MA 02111-1307, USA.  */
    This exception does not however invalidate any other reasons why
    the executable file might be covered by the GNU General Public License.  */
 
-#include "sarray.h"
-#include "runtime.h"
+#include "objc/sarray.h"
+#include "objc/runtime.h"
 #include <stdio.h>
 #include "assert.h"
 
index ce8acf7ac3af3d7f5c2168f19be0f9d2142d3814..86673339bfb1e9d8a945f7efa7e860e39a2f4c7d 100644 (file)
@@ -23,9 +23,9 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include "runtime.h"
-#include "sarray.h"
-#include "encoding.h"
+#include "objc/runtime.h"
+#include "objc/sarray.h"
+#include "objc/encoding.h"
 
 /* Initial selector hash table size. Value doesn't matter much */
 #define SELECTOR_HASH_SIZE 128
index f0b5bbb35c2358ed877342dd716c83adfd1e783c..414af70ed6da52aa535647b33b16515b40463226 100644 (file)
@@ -32,9 +32,9 @@ Boston, MA 02111-1307, USA.  */
 #include "tconfig.h"
 #include "coretypes.h"
 #include "tm.h"
-#include "runtime.h"
-#include "sarray.h"
-#include "encoding.h"
+#include "objc/runtime.h"
+#include "objc/sarray.h"
+#include "objc/encoding.h"
 #include "runtime-info.h"
 
 /* This is how we hack STRUCT_VALUE to be 1 or 0.   */
index 8350db2e0bbb6b72e459f41e4db03a7b00981c83..166d61f6f2149cbca18f573f91578d7bb082e9ff 100644 (file)
@@ -25,8 +25,8 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include <pthread.h>
-#include <thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Key structure for maintaining thread specific storage */
 static pthread_key_t _objc_thread_storage;
index cfb2cbc487f1ae6fb75ee1b4682141342758b534..166d61f6f2149cbca18f573f91578d7bb082e9ff 100644 (file)
@@ -25,8 +25,8 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include <pthread.h>
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Key structure for maintaining thread specific storage */
 static pthread_key_t _objc_thread_storage;
index 6eb06ec48ecc29d949b0eb0111ae93185f6cad1b..9ad55bb3be27ad550cf0ef34a703657422cc4266 100644 (file)
@@ -29,8 +29,8 @@ Boston, MA 02111-1307, USA.  */
 #include <sys/sysmp.h>
 #include <sys/prctl.h>
 #include <ulocks.h>
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Key structure for maintaining thread specific storage */
 static void * __objc_shared_arena_handle = NULL;
index b0f864d71008841a65a8d20b005866a167686b15..7d70625562e3a378087bf2255e6bda3f37c0a96a 100644 (file)
@@ -28,8 +28,8 @@ Boston, MA 02111-1307, USA.  */
 
 #include <mach/mach.h>
 #include <mach/cthreads.h>
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /*
   Obtain the maximum thread priority that can set for t.  Under the
index d954f937154619e2483bcab91c2fa167ebc29d94..25f9762b086bfdcea413ba7704e1e788e0157443 100644 (file)
@@ -29,8 +29,8 @@ Boston, MA 02111-1307, USA.  */
 #include "coretypes.h"
 #include "tm.h"
 #include "defaults.h"
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 #include <gthr.h>
 
 /* Backend initialization functions */
index d43d225650cd7d065c7fc8ee334304ee71ee0219..e302006ab19aa68735ac8cd6ef2eecb5ebfc4244 100644 (file)
@@ -24,8 +24,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 #define INCL_DOSSEMAPHORES
 #define INCL_DOSPROCESS
index 710bebf30e611d4dce91444b2b7a15e3521c27c8..9871b57691fa8ccb34048cf4cfc3d1bbaba07cdb 100644 (file)
@@ -26,8 +26,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 #include <pthread.h>
 
 /* Key structure for maintaining thread specific storage */
index c00c6016bff9a8e71d2d668796d33dc5e84c5bd7..99321c8e93f43d05ace1d062a982e14e61ec07be 100644 (file)
@@ -26,8 +26,8 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include <pcthread.h>
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Key structure for maintaining thread specific storage */
 static pthread_key_t _objc_thread_storage;
index 8683d769d5cb22f81091a097c4ee7b6906d30e83..eab889240568ee94d1a318a9725ac7ca2b880666 100644 (file)
@@ -26,8 +26,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Thread local storage for a single thread */
 static void *thread_local_storage = NULL;
index 24ab5d7b630d71157f452a4d3555f208df81f3b8..132307448e74a775057714253ee9c6738dcf0a5e 100644 (file)
@@ -24,8 +24,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Thread local storage for a single thread */
 static void *thread_local_storage = NULL;
index 447d0c45f9e30ca01ff93263237c25483cc6ca65..d37013b132d977f0dfa3a1b2005cbb91260ba542 100644 (file)
@@ -25,8 +25,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 #include <thread.h>
 #include <synch.h>
index 24ab5d7b630d71157f452a4d3555f208df81f3b8..132307448e74a775057714253ee9c6738dcf0a5e 100644 (file)
@@ -24,8 +24,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 /* Thread local storage for a single thread */
 static void *thread_local_storage = NULL;
index 3447a02d65ae4640fce05f455f404925ff291a14..065242ce8ff99ce986b0ce2b455d02fc8fd2c769 100644 (file)
@@ -24,8 +24,8 @@ Boston, MA 02111-1307, USA.  */
    however invalidate any other reasons why the executable file might be
    covered by the GNU General Public License.  */
 
-#include <objc/thr.h>
-#include "runtime.h"
+#include "objc/thr.h"
+#include "objc/runtime.h"
 
 #ifndef __OBJC__
 #define __OBJC__
index 7420cfaf2d01261be068aa898862713eff253515..91e15d522523626ffa3aaef4a64b685e70759857 100644 (file)
@@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA.  */
    covered by the GNU General Public License.  */
 
 #include <stdlib.h>
-#include "runtime.h"
+#include "objc/runtime.h"
 
 /* Global exit status. */
 int __objc_thread_exit_status = 0;