/hg/icedtea6: - Set timeout to 120 seconds (previous commit mist...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Tue Jul 13 11:49:25 PDT 2010
changeset 0b8a71d3b9db in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=0b8a71d3b9db
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Jul 13 14:48:45 2010 -0400
- Set timeout to 120 seconds (previous commit mistakenly changed it
to 10).
- Print debug info only in debug mode.
diffstat:
3 files changed, 16 insertions(+), 3 deletions(-)
ChangeLog | 7 +++++++
plugin/icedteanp/IcedTeaJavaRequestProcessor.h | 2 +-
plugin/icedteanp/IcedTeaPluginUtils.h | 10 ++++++++--
diffs (46 lines):
diff -r bd9b46091cd7 -r 0b8a71d3b9db ChangeLog
--- a/ChangeLog Tue Jul 13 11:46:10 2010 +0200
+++ b/ChangeLog Tue Jul 13 14:48:45 2010 -0400
@@ -1,3 +1,10 @@ 2010-07-13 Mark Wielaard <mjw at redhat.c
+2010-07-13 Deepak Bhole <dbhole at redhat.com>
+
+ * plugin/icedteanp/IcedTeaJavaRequestProcessor.h: Set timeout to 120
+ seconds (previous commit mistakenly changed it to 10).
+ * plugin/icedteanp/IcedTeaPluginUtils.h: Print debug info only in debug
+ mode.
+
2010-07-13 Mark Wielaard <mjw at redhat.com>
Reported by William Cohen <wcohen at redhat.com>
diff -r bd9b46091cd7 -r 0b8a71d3b9db plugin/icedteanp/IcedTeaJavaRequestProcessor.h
--- a/plugin/icedteanp/IcedTeaJavaRequestProcessor.h Tue Jul 13 11:46:10 2010 +0200
+++ b/plugin/icedteanp/IcedTeaJavaRequestProcessor.h Tue Jul 13 14:48:45 2010 -0400
@@ -46,7 +46,7 @@ exception statement from your version. *
#include "IcedTeaNPPlugin.h"
#include "IcedTeaPluginUtils.h"
-#define REQUESTTIMEOUT 10
+#define REQUESTTIMEOUT 120
/*
* This struct holds data specific to a Java operation requested by the plugin
diff -r bd9b46091cd7 -r 0b8a71d3b9db plugin/icedteanp/IcedTeaPluginUtils.h
--- a/plugin/icedteanp/IcedTeaPluginUtils.h Tue Jul 13 11:46:10 2010 +0200
+++ b/plugin/icedteanp/IcedTeaPluginUtils.h Tue Jul 13 14:48:45 2010 -0400
@@ -67,8 +67,14 @@ exception statement from your version. *
#include "IcedTeaNPPlugin.h"
#define PLUGIN_DEBUG(...) \
- fprintf (stderr, "ITNPP Thread# %d: ", pthread_self()); \
- fprintf (stderr, __VA_ARGS__)
+ do \
+ { \
+ if (plugin_debug) \
+ { \
+ fprintf (stderr, "ITNPP Thread# %ld: ", pthread_self()); \
+ fprintf (stderr, __VA_ARGS__); \
+ } \
+ } while (0)
#define CHECK_JAVA_RESULT(result_data) \
{ \
More information about the distro-pkg-dev
mailing list