This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

posix-threads.cc needs to #include <errno.h>


A recent change to posix-threads.cc means that the file is now referencing
'errno'. We need to include <errno.h>, so I have committed the following patch:

1999-08-24  Bryce McKinlay  <bryce@albatross.co.nz>

        * posix-threads.cc: Include <errno.h>.


===================================================================
RCS file: /cvs/java/libgcj/libjava/posix-threads.cc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libgcj/libjava/posix-threads.cc     1999/08/24 04:01:06     1.4
+++ libgcj/libjava/posix-threads.cc     1999/08/25 00:46:23     1.5
@@ -26,6 +26,7 @@
 #include <stdlib.h>
 #include <time.h>
 #include <signal.h>
+#include <errno.h>

 #include <cni.h>
 #include <jvm.h>


  [ bryce ]



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]