This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
posix-threads.cc needs to #include <errno.h>
- To: java-patches@sourceware.cygnus.com
- Subject: posix-threads.cc needs to #include <errno.h>
- From: Bryce McKinlay <bryce@albatross.co.nz>
- Date: Wed, 25 Aug 1999 13:00:56 +1200
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 ]