From owner-freebsd-java@FreeBSD.ORG Sun Mar 22 09:41:27 2009 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8B21106564A for ; Sun, 22 Mar 2009 09:41:27 +0000 (UTC) (envelope-from rzo@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 282D78FC15 for ; Sun, 22 Mar 2009 09:41:26 +0000 (UTC) (envelope-from rzo@gmx.de) Received: (qmail invoked by alias); 22 Mar 2009 09:14:45 -0000 Received: from p54A322F6.dip0.t-ipconnect.de (EHLO [192.168.0.90]) [84.163.34.246] by mail.gmx.net (mp011) with SMTP; 22 Mar 2009 10:14:45 +0100 X-Authenticated: #1178861 X-Provags-ID: V01U2FsdGVkX18Rmzx66OYRdwKxLqNVET8VvFUnihCW8KQAar6TIB zA9xQj0z9tV9xz Message-ID: <49C60185.8020006@gmx.de> Date: Sun, 22 Mar 2009 10:14:45 +0100 From: rzo User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: freebsd-java@FreeBSD.org References: <200903152251.n2FMpnRk014352@www.freebsd.org> <49BF3736.2040308@gmx.de> In-Reply-To: <49BF3736.2040308@gmx.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.44 Cc: Subject: Re: amd64/132677: error calling fork execvp X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Mar 2009 09:41:28 -0000 Hello, I am having problems calling fork/exec from within java on FreeBSD 64. I would appreciate if you could help me with this. - Ron http://yajsw.sourceforge.net/ ------------------ "Do you have specific reason to believe that this usage of fork is supported by Java? " Well, java has the ability to spwan a process (Runtime.exec()), so it can fork/exec. The problem with this solution is that the spawned process is not demonized, whereas I need to spawn a daemon. My program works fine on FreeBSD 32bit. Therefore my assumption that this is a FreeBSD amd64 issue. Maybe I should check with the freebsd java team. Thanks Ron ------------------------- Nate Eldredge wrote: > On Sun, 22 Mar 2009, rzo wrote: > >> Nate, >> >> I have tried calling the execvp with a null as last argument. But it >> will not work. >> Here the code I am using: >> >> you will need this library to compile it. >> >> https://jna.dev.java.net/source/browse/*checkout*/jna/trunk/jnalib/dist/jna.jar?rev=HEAD >> > > Thanks for the details. I'm not sure that this is a FreeBSD bug. The > program does indeed exhibit weird behavior in the child process, but I > think this is more likely due to the Java virtual machine not > expecting to be forked. Do you have specific reason to believe that > this usage of fork is supported by Java? > > I am not a Java expert, so I can't be sure, but I would recommend > asking some Java experts. In particular, I have the impression that > this is not the recommended way to spawn a new program from Java. > -------------------------- PS: I am using the following JDK: diablo-jdk-freebsd6.amd64.1.6.0.07.02.tbz - Ron -------------- Nate, I have tried calling the execvp with a null as last argument. But it will not work. Here the code I am using: you will need this library to compile it. https://jna.dev.java.net/source/browse/*checkout*/jna/trunk/jnalib/dist/jna.jar?rev=HEAD package test; import java.io.IOException; import com.sun.jna.Library; import com.sun.jna.Native; public class ForkTest { interface CLibrary extends Library { CLibrary INSTANCE = (CLibrary) Native.loadLibrary("c", CLibrary.class); int fork(); int execve(String path, String[] argv, String[] envp); int execvp(String filename, String[] argv); String strerror (int errnum); } public static void main(String[] args) throws IOException, InterruptedException { long pid = CLibrary.INSTANCE.fork(); if (pid == 0) { //int res = CLibrary.INSTANCE.execve("/sbin/ping", new String[]{"/sbin/ping", "localhost"}, new String[0]); int res = CLibrary.INSTANCE.execvp("/sbin/ping", new String[]{"/sbin/ping", "localhost", null}); int err = Native.getLastError(); System.out.println("errno " + err + " "+CLibrary.INSTANCE.strerror(err)); System.out.println("exec res "+res); } else { System.out.println("pid "+pid); Thread.sleep(100000); } } } ---------------------- Nate Eldredge wrote: > On Tue, 17 Mar 2009, rzo wrote: > >> Nate, >> >> I am programming in java and using jna (https://jna.dev.java.net/) to >> call libc. > > A Java source file would be fine too. > >> I have no c/c++ dev environment. > > gcc is included with FreeBSD... > >> I think the difference is that I am using { "echo", "Hello, world!"}; > > For the C function, it is necessary to have a NULL at the end of the > array. If you're missing one, that is probably the cause of the problem. > >> I will try this out on the weekend and will get back to you. > > Ok. > rzo wrote: > Nate, > > I am programming in java and using jna (https://jna.dev.java.net/) to > call libc. > I have no c/c++ dev environment. > I think the difference is that I am using { "echo", "Hello, world!"}; > I will try this out on the weekend and will get back to you. > > Regards > > - Ron > http://yajsw.sourceforge.net/ > > > Nate Eldredge wrote: >> On Sun, 15 Mar 2009, ron wrote: >> >>> hello, >>> >>> calling execvp(2) works fine. >>> >>> however calling >>> >>> pid = fork() >>> if (pid == 0) >>> execvp(2) >>> >>> returns error 22 (invalid value) >>> >>> calling >>> >>> pid = fork() >>> if (pid == 0) >>> execve(3) >>> >>> works fine >> >> Can you be more specific? In particular, could you send a complete >> source that can be compiled and run, and that shows the problem? >> >> I can't reproduce a problem here. I am running 7.1 on amd64, and the >> following program works as expected. >> >> #include >> #include >> #include >> #include >> #include >> >> int main(void) { >> pid_t pid; >> pid = fork(); >> if (pid == 0) { >> char *argv[] = { "echo", "Hello, world!", NULL }; >> execvp("echo", argv); >> perror("execvp failed"); >> _exit(1); >> } else if (pid > 0) { >> int status; >> if (waitpid(pid, &status, 0) == -1) { >> perror("waitpid"); >> exit(1); >> } >> if (WIFEXITED(status)) >> printf("Child exited with status %d\n", WEXITSTATUS(status)); >> else if (WIFSIGNALED(status)) >> printf("Child killed by signal %d\n", WTERMSIG(status)); >> else >> printf("Impossible status!\n"); >> } else if (pid < 0) { >> perror("fork"); >> exit(1); >> } >> return 0; >> } >> >> The output is: >> Hello, world! >> Child exited with status 0 >> >> Perhaps there is something wrong in a different part of your test >> program. >> > > From owner-freebsd-java@FreeBSD.ORG Mon Mar 23 11:06:59 2009 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEEC91065673 for ; Mon, 23 Mar 2009 11:06:59 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A16D48FC1F for ; Mon, 23 Mar 2009 11:06:59 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n2NB6xMQ004062 for ; Mon, 23 Mar 2009 11:06:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n2NB6xLR004058 for freebsd-java@FreeBSD.org; Mon, 23 Mar 2009 11:06:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 23 Mar 2009 11:06:59 GMT Message-Id: <200903231106.n2NB6xLR004058@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-java@FreeBSD.org X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Mar 2009 11:07:00 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/130542 java java/jdk16-doc changed distifo o java/128948 java java/jdk16 built from source can't bind a socket, but o java/128809 java JVM aborted when GNU RXTX write to serial port. o java/125583 java Java gui programs stop without error message o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o java/122513 java native JDKs unbuildable with Linux ones o java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o ports/121420 java java/jdk16: Java applet fails to find class under fire o ports/121416 java java/jdk15 can't build if BIN environment variable is o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o java/116667 java linux-sun-javac1.4 hangs on SMP o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o java/115773 java [request] java.nio channel selectors should use kqueue o java/114644 java tomcat goes out of PermSpace, jvm crashes o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o ports/113467 java Multiple "missing return value" errors building JDK on o java/112595 java Java appletviewer frequently hangs (kse_release loop) o java/110912 java Java krb5 client leaks UDP connections f java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o java/97461 java Diablo JDK does not report Update level in a format su o ports/84742 java make ports/java/jdk14 use dynamic Motif librarires s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in s ports/60083 java java/jdk14 - Unsafe use of getaddrinfo in jvm 1.4.2-p5 s ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext 30 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Mar 23 18:50:15 2009 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 594211065679 for ; Mon, 23 Mar 2009 18:50:15 +0000 (UTC) (envelope-from brian@experts-exchange.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [64.156.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 422BB8FC37 for ; Mon, 23 Mar 2009 18:50:15 +0000 (UTC) (envelope-from brian@experts-exchange.com) Received: from [192.168.103.26] (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with ESMTP id 607524A306DB; Mon, 23 Mar 2009 10:50:14 -0800 (PST) Message-ID: <49C7D9E6.8000309@experts-exchange.com> Date: Mon, 23 Mar 2009 11:50:14 -0700 From: Brian Gardner User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Horst Leitenmueller References: <1237104701.39595.15.camel@lap01> <49BFD99C.9020105@experts-exchange.com> <1237467518.68537.17.camel@lap01> In-Reply-To: <1237467518.68537.17.camel@lap01> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-java@FreeBSD.org Subject: Re: Eclipse native code crash, on sync with SVN X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Mar 2009 18:50:15 -0000 Hey Horst, I'm unable to duplicate this on my side. Unfortunetely I only have an i386 box to test against so, that could be the difference. I'll try and obtain a amd64 FreeBSD workstation in the next month or so, so I can duplicate and hopefully resolve your issue. Horst Leitenmueller wrote: > Hi Brian, > > attached test report with openjdk 1.6 / jdk 1.6 and diablo jdk 1.6 > with eclipse 3.4.1 | svnkit 1.2.2.5405 (inside update no ports) > and all hs_err > > hope it helps > > horst > > > On Tue, 2009-03-17 at 10:10 -0700, Brian Gardner wrote: > >> Hey Horst, >> I'm working on getting a FreeBSD workstation so I can start >> troubleshooting and fixing some of these openjdk6 bugs that are popping >> up. I sounds like you have two issues: >> >> 1) native code that deals with ipv6 sockets causes a segfault/core >> dump when performing an svn sync from Eclipse. >> 2) their is also a general graphics issue that causes Eclipse to crash. >> >> Is that right? Can you please forward the hs_err_* files to me. I >> doubt that will be enough for me to debug,. but if I can duplicate the >> issues I should be able to debug with gdb. >> >> Brian >> >> Horst Leitenmueller wrote: >> >>> hello, >>> >>> i have a big problem i'm not able to sync with eclipse SVN anymore >>> (subclipse v 1.4) >>> >>> computer laptop celsius mobile h270 quad core Intel(R) Core(TM)2 Quad >>> CPU Q9100 @ 2.26GHz (2261.02-MHz K8-class CPU) >>> with gnome2.24 >>> x11 driver: xf86-video-nouveau >>> graphiccard: >>> >>> # An unexpected error has been detected by Java Runtime Environment: >>> # >>> # SIGSEGV (0xb) at pc=0x0000000800d0c724, pid=17390, tid=0x1832200 >>> # >>> # Java VM: Diablo Java HotSpot(TM) 64-Bit Server VM (10.0-b23 mixed mode >>> bsd-amd64) >>> # Problematic frame: >>> # V [libjvm.so+0x20c724] >>> # >>> # An error report file with more information is saved as: >>> # /usr/xxx/hs_err_pid17390.log >>> # >>> # Please submit bug reports to freebsd-java@FreeBSD.org >>> # The crash happened outside the Java Virtual Machine in native code. >>> # See problematic frame for where to report the bug. >>> # >>> Eclipse: Fatal IO error 35 (Resource temporarily unavailable) on X >>> server :0.0. >>> >>> what could this be ? >>> >>> attached the hs_err_log >>> >>> thnx horst >>> >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> freebsd-java@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-java >>> To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" >>> >> _______________________________________________ >> freebsd-java@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-java >> To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> freebsd-java@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-java >> To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" From owner-freebsd-java@FreeBSD.ORG Wed Mar 25 12:29:19 2009 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83CDB1065676; Wed, 25 Mar 2009 12:29:19 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 594AD8FC23; Wed, 25 Mar 2009 12:29:19 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n2PCTJl4007279; Wed, 25 Mar 2009 12:29:19 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n2PCTJrO007275; Wed, 25 Mar 2009 12:29:19 GMT (envelope-from glewis) Date: Wed, 25 Mar 2009 12:29:19 GMT Message-Id: <200903251229.n2PCTJrO007275@freefall.freebsd.org> To: jsa@wickedmachine.net, glewis@FreeBSD.org, freebsd-java@FreeBSD.org From: glewis@FreeBSD.org Cc: Subject: Re: ports/130542: java/jdk16-doc changed distifo X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2009 12:29:20 -0000 Synopsis: java/jdk16-doc changed distifo State-Changed-From-To: open->closed State-Changed-By: glewis State-Changed-When: Wed Mar 25 12:29:18 UTC 2009 State-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=130542 From owner-freebsd-java@FreeBSD.ORG Wed Mar 25 12:30:05 2009 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6A1810656D6 for ; Wed, 25 Mar 2009 12:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AC7438FC0A for ; Wed, 25 Mar 2009 12:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n2PCU5il007446 for ; Wed, 25 Mar 2009 12:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n2PCU5IT007443; Wed, 25 Mar 2009 12:30:05 GMT (envelope-from gnats) Date: Wed, 25 Mar 2009 12:30:05 GMT Message-Id: <200903251230.n2PCU5IT007443@freefall.freebsd.org> To: freebsd-java@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/130542: commit references a PR X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2009 12:30:13 -0000 The following reply was made to PR ports/130542; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/130542: commit references a PR Date: Wed, 25 Mar 2009 12:29:10 +0000 (UTC) glewis 2009-03-25 12:28:56 UTC FreeBSD ports repository Modified files: java/jdk16-doc Makefile distinfo Log: . Chase a change in the distfile. PR: 130542 Submitted by: "Joseph S. Atkinson" Revision Changes Path 1.2 +3 -3 ports/java/jdk16-doc/Makefile 1.2 +3 -3 ports/java/jdk16-doc/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-java@FreeBSD.ORG Wed Mar 25 17:22:29 2009 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12F4A10658BD; Wed, 25 Mar 2009 17:22:29 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 921D98FC24; Wed, 25 Mar 2009 17:22:28 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from release.ixsystems.com (unknown [206.40.55.81]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 4936522C5057; Wed, 25 Mar 2009 19:05:19 +0200 (EET) Received: by release.ixsystems.com (Postfix, from userid 0) id 823708FC48; Wed, 25 Mar 2009 09:50:12 -0700 (PDT) From: QAT@FreeBSD.org To: glewis@FreeBSD.org In-Reply-To: <200903251228.n2PCSuv9035868@repoman.freebsd.org> References: <200903251228.n2PCSuv9035868@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.57 2009/03/08 00:17:57 itetcu Exp $ X-QAT-Tindy_Version: tinderbox-3.1.2_1; dsversion: 3.1 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2009-03-12 23:55:59 X-QAT-Port: java/jdk16-doc X-QAT-Log: http://QAT.TecNik93.com/logs/7-STABLE-FPT-NPD/jdk-doc-1.6.0.10.log X-QAT-Build_Reason: Commit X-QAT-Fail_Reason: mtree Message-Id: <20090325165012.823708FC48@release.ixsystems.com> Date: Wed, 25 Mar 2009 09:50:12 -0700 (PDT) Cc: cvs-ports@FreeBSD.org, java@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/java/jdk16-doc Makefile distinfo X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2009 17:22:39 -0000 QAT - your restless neighborhood Daemon - identified a mtree error while trying to build: jdk-doc-1.6.0.10 maintained by java@FreeBSD.org Makefile ident: $FreeBSD: ports/java/jdk16-doc/Makefile,v 1.2 2009/03/25 12:28:56 glewis Exp $ Excerpt from http://QAT.TecNik93.com/logs/7-STABLE-FPT-NPD/jdk-doc-1.6.0.10.log : 15687934 12 -r--r--r-- 2 root wheel 4894 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddFilePerm1.gif 15687935 12 -r--r--r-- 2 root wheel 4802 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddSocketPerm.gif 15687936 12 -r--r--r-- 2 root wheel 5890 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/ptTwoEntries.gif 15687937 8 -r--r--r-- 2 root wheel 3686 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddPrincipalBlank.gif 15687938 12 -r--r--r-- 2 root wheel 4776 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddFilePerm2.gif 15687939 16 -r--r--r-- 2 root wheel 7977 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddPrincipalPermEntry.gif 15687940 8 -r--r--r-- 2 root wheel 3623 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddKeystore.gif 15687941 12 -r--r--r-- 2 root wheel 5022 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/ptBlank.gif 15687942 12 -r--r--r-- 2 root wheel 4284 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/AddX500Principal.gif 15687943 12 -r--r--r-- 2 root wheel 5309 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/ptOneCB.gif 15687944 16 -r--r--r-- 2 root wheel 7182 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/ptThreeEntries.gif 15687945 16 -r--r--r-- 2 root wheel 7451 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/images/ptThreeEntriesAndFileName.gif 15687946 56 -r--r--r-- 2 root wheel 27760 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/jar.html 15687947 32 -r--r--r-- 2 root wheel 15313 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/jdb.html 15687948 16 -r--r--r-- 2 root wheel 7485 Apr 21 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/javap.html 15687949 8 -r--r--r-- 2 root wheel 4039 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/appletviewer.html 15687950 72 -r--r--r-- 2 root wheel 36668 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/javac.html 15687951 8 -r--r--r-- 2 root wheel 3503 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/extcheck.html 15687952 36 -r--r--r-- 2 root wheel 17066 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/classpath.html 15687953 104 -r--r--r-- 2 root wheel 53066 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/jarsigner.html 15687954 52 -r--r--r-- 2 root wheel 25529 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/java.html 15687955 512 -r--r--r-- 2 root wheel 232078 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/javadoc.html 15687956 16 -r--r--r-- 2 root wheel 7427 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/javah.html 15687957 24 -r--r--r-- 2 root wheel 10752 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/jdkfiles.html 15687958 36 -r--r--r-- 2 root wheel 18273 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/rmid.html 15687959 16 -r--r--r-- 2 root wheel 6654 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/kinit.html 15687960 12 -r--r--r-- 2 root wheel 5043 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/ktab.html 15687961 8 -r--r--r-- 2 root wheel 3164 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/native2ascii.html 15687962 28 -r--r--r-- 2 root wheel 13707 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/rmic.html 15687963 12 -r--r--r-- 2 root wheel 4408 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/klist.html 15687964 176 -r--r--r-- 2 root wheel 89205 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/keytool.html 15687965 8 -r--r--r-- 2 root wheel 3246 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/policytool.html 15687966 8 -r--r--r-- 2 root wheel 3490 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/windows/rmiregistry.html 15687967 8 -r--r--r-- 2 root wheel 3469 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/windows/serialver.html 15687968 56 -r--r--r-- 2 root wheel 27614 Apr 29 2008 usr/local/share/doc/jdk1.6/technotes/tools/index.html 15687969 20 -r--r--r-- 2 root wheel 9413 Sep 11 2007 usr/local/share/doc/jdk1.6/technotes/tools/appletviewertags.html 15687970 16 -r--r--r-- 2 root wheel 6397 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/RESTRICTED_EDITING_AREA 15687971 28 -r--r--r-- 2 root wheel 13639 Jul 10 2007 usr/local/share/doc/jdk1.6/technotes/tools/findingclasses.html ================================================================ build of /usr/ports/java/jdk16-doc ended at Wed Mar 25 16:50:10 UTC 2009 The tarballed WRKDIR can be found here: http://QAT.TecNik93.com/wrkdirs/7-STABLE-FPT-NPD/jdk-doc-1.6.0.10.tbz PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=java&portname=jdk16-doc The build which triggered this BotMail was done under tinderbox-3.1.2_1; dsversion: 3.1 on RELENG_7 on amd64 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From owner-freebsd-java@FreeBSD.ORG Fri Mar 27 01:03:21 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40365106566C for ; Fri, 27 Mar 2009 01:03:21 +0000 (UTC) (envelope-from taozhenext@yahoo.com) Received: from web54304.mail.re2.yahoo.com (web54304.mail.re2.yahoo.com [206.190.49.114]) by mx1.freebsd.org (Postfix) with SMTP id E192B8FC12 for ; Fri, 27 Mar 2009 01:03:20 +0000 (UTC) (envelope-from taozhenext@yahoo.com) Received: (qmail 53794 invoked by uid 60001); 27 Mar 2009 00:36:39 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1238114199; bh=1WZevekug43dE6POPO3UYUUkeAZL5icH7ZOPtTqsiLE=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=hnc2H19rsFxDJV3IHXbSeivEwpqIk4TNYGsiG2VLi/kB9whAfD8i6LAlHHnD2sSote9RJ6zPFhFgiexIPr+TTxffozls3DAW+YbZxxjLJV/yPc56Fk9cEWUGoa1BVyYkY6BuLZB6Xk/Q5hZ7r5ZJBxsNCJwnm0fo5o3npkmzheY= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=ZbgMD+K1pG5K0uoUZ16YWrgMMzEdKe4xPAsoQnRLeBVN8Kvn4WYQfeMcJNDOLMJB/glQdjE3tb/+xM/9IBlOxIny6W1R4u64ECwYuA4F+zXqo3hwxSFwr2CRbVdnyBdk1kzbsz8llMfRM+i3vqSpxE7pK0/5UTAzDunMdQXtTtA=; Message-ID: <294579.53168.qm@web54304.mail.re2.yahoo.com> X-YMail-OSG: C.OsQxgVM1n1QtML78i3QH3ErGZdQRe5wRnWXfdn_HuSCJcHePIZotfLO3Q8F5AShvNaPVWKg8rQ_0VtNcTuD2XkEkm3wZN0uhI89vdj_HTJXMjX7ARJidSsHjdNf3Of1mgqB1OYiCXvY60kYzYzbkXJtBeYOvzWoXGdkkNhFaxhhLpm_0mjNQHO9t.HHQ-- Received: from [64.252.195.61] by web54304.mail.re2.yahoo.com via HTTP; Thu, 26 Mar 2009 17:36:38 PDT X-Mailer: YahooMailRC/1277.32 YahooMailWebService/0.7.289.1 Date: Thu, 26 Mar 2009 17:36:38 -0700 (PDT) From: Tao Zhen To: freebsd-java@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-2121058618-1238114198=:53168" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: bug report X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Mar 2009 01:03:21 -0000 --0-2121058618-1238114198=:53168 Content-Type: text/plain; charset=us-ascii Hi, Please see attached for an unexpected error detected by JRE. My system configuration: FreeBSD 7.1/amd64, Intel Core i7 920, xorg-7.4, jdk-1.6.0.3p4_10. If you need more information please let me know. Thanks. Tao --0-2121058618-1238114198=:53168 Content-Type: application/octet-stream; name="hs_err_pid99299.log" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="hs_err_pid99299.log" IwojIEFuIHVuZXhwZWN0ZWQgZXJyb3IgaGFzIGJlZW4gZGV0ZWN0ZWQgYnkg SmF2YSBSdW50aW1lIEVudmlyb25tZW50OgojCiMgIFNJR1NFR1YgKDB4Yikg YXQgcGM9MHgwMDAwMDAwODAxN2E2NWMzLCBwaWQ9OTkyOTksIHRpZD0weGEw MjQ4MAojCiMgSmF2YSBWTTogSmF2YSBIb3RTcG90KFRNKSA2NC1CaXQgU2Vy dmVyIFZNICgxLjYuMF8wMy1wNC1yb290XzI2X21hcl8yMDA5XzIwXzA3LWIw MCBtaXhlZCBtb2RlKQojIFByb2JsZW1hdGljIGZyYW1lOgojIEMgIFtsaWJz cGxhc2hzY3JlZW4uc28rMHgyOTVjM10gIGluZmxhdGVfZmFzdCsweDIzCiMK IyBQbGVhc2Ugc3VibWl0IGJ1ZyByZXBvcnRzIHRvIGZyZWVic2QtamF2YUBG cmVlQlNELm9yZwojCgotLS0tLS0tLS0tLS0tLS0gIFQgSCBSIEUgQSBEICAt LS0tLS0tLS0tLS0tLS0KCkN1cnJlbnQgdGhyZWFkICgweDAwMDAwMDA4MDI5 Mjk4MDApOiAgSmF2YVRocmVhZCAibWFpbiIgW190aHJlYWRfaW5fbmF0aXZl LCBpZD0xMDQ5NTEwNF0KCnNpZ2luZm86c2lfc2lnbm89MTEsIHNpX2Vycm5v PTAsIHNpX2NvZGU9MSwgc2lfYWRkcj0weDAwMDAwMDAwMDAwMDAwMGEKClJl Z2lzdGVyczoKUkFYPTB4MDAwMDAwMDAwMDAwMDAwYSwgUkJYPTB4MDAwMDAw MDAwMDAwMDExNywgUkNYPTB4MDAwMDAwMDAwMDAwNWU5OCwgUkRYPTB4MDAw MDAwMDg0YmJjODAwMApSU1A9MHgwMDAwN2ZmZmZmOWZjOWQwLCBSQlA9MHgw MDAwN2ZmZmZmOWZjOWUwLCBSU0k9MHgwMDAwMDAwMDAwMDA1ZTk4LCBSREk9 MHgwMDAwMDAwODAyOTQwNjMwClI4ID0weDAwMDAwMDAwMDAwMDAwMWQsIFI5 ID0weDAwMDAwMDAwMDAwMDAwMGEsIFIxMD0weDAwMDAwMDA4NGJiYzYwNjIs IFIxMT0weDAwMDAwMDAwMDAwMDFmOWUKUjEyPTB4MDAwMDAwMDAwMDAwMDAw NCwgUjEzPTB4MDAwMDAwMDg0YmJjMzAwMCwgUjE0PTB4MDAwMDAwMDAwMDAw MDEzNCwgUjE1PTB4MDAwMDAwMDAwMDAwMDAwZgpSSVA9MHgwMDAwMDAwODAx N2E2NWMzLCBFRkw9MHgwMDAwMDAwODAxOGRkNjA4LCBFUlI9MHgwMDAwMDAw MDAwMDAwMDA0CiAgVFJBUE5PPTB4MDAwMDAwMDAwMDAwMDAwYwoKVG9wIG9m IFN0YWNrOiAoc3A9MHgwMDAwN2ZmZmZmOWZjOWQwKQoweDAwMDA3ZmZmZmY5 ZmM5ZDA6ICAgMDAwMDAwMDg0YmJjMzAwMCAwMDAwMDAwMDAwMDAwMTE3CjB4 MDAwMDdmZmZmZjlmYzllMDogICAwMDAwMDAwODAyOTQwNjMwIDAwMDAwMDA4 MDJlNjE2YzEKMHgwMDAwN2ZmZmZmOWZjOWYwOiAgIDAwMDAwMDAwMDA1MTQ5 MzAgMDAwMDAwMDAwMDAwMDEwMgoweDAwMDA3ZmZmZmY5ZmNhMDA6ICAgMDAw MDAwMDAwMDAwNjAwMCAwMDAwMDAwODRiYmM4MDAwCjB4MDAwMDdmZmZmZjlm Y2ExMDogICAwMDAwMDAwMDAwMDAxZjllIDAwMDAwMDA4NGJiYzYwNjIKMHgw MDAwN2ZmZmZmOWZjYTIwOiAgIDAwMDA3ZmZmZmY5ZmNhODAgMDAwMDAwMDg0 YmJjMzA3NAoweDAwMDA3ZmZmZmY5ZmNhMzA6ICAgMDAwMDAwMDg0YmJjMzA5 MCAwMDAwMDAwODRiYmMzMDcwCjB4MDAwMDdmZmZmZjlmY2E0MDogICAwMDAw MDAwODRiYmMzMDg4IDAwMDAwMDA4NGJiYzMzMTAKMHgwMDAwN2ZmZmZmOWZj YTUwOiAgIDAwMDAwMDA4NGJiYzM1NTAgMDAwMDdmZmYwMDAwMDAwMQoweDAw MDA3ZmZmZmY5ZmNhNjA6ICAgMDAwMDAwMDg0YmJjODAwMCAwMDAwNWU5ODAw N2NhNjkyCjB4MDAwMDdmZmZmZjlmY2E3MDogICAwMDAwMDAwMDAwMDA1ZTk4 IDAwMDAyMDAwMDAwMDAwMDAKMHgwMDAwN2ZmZmZmOWZjYTgwOiAgIDAwMDAw MDA4MDJmNzIwNGUgMDAwMDAwMDgwNjE4YmJjOAoweDAwMDA3ZmZmZmY5ZmNh OTA6ICAgMDAwMDAwMDgwMmY3YTU5NiAwMDAwMDAwODA2MWExZTU4CjB4MDAw MDdmZmZmZjlmY2FhMDogICAwMDAwN2ZmZmZmOWZjYjMwIDAwMDAwMDAwMDAw MDAxMDIKMHgwMDAwN2ZmZmZmOWZjYWIwOiAgIDAwMDAwMDA4MDYxYTFlNTAg MDAwMDdmZmZmZjlmY2JlMAoweDAwMDA3ZmZmZmY5ZmNhYzA6ICAgMDAwMDAw MDgwMjkyOTgwMCAwMDAwMDAwODAyZDU1ODUyCjB4MDAwMDdmZmZmZjlmY2Fk MDogICAwMDAwMDAwODAyOTQ5NzAwIDAwMDA3ZmZmZmY5ZmNiMTgKMHgwMDAw N2ZmZmZmOWZjYWUwOiAgIDAwMDAwMDAwMDAwMDVlOTggMDAwMDdmZmZmZjlm Y2JkOAoweDAwMDA3ZmZmZmY5ZmNhZjA6ICAgMDAwMDdmZmZmZjlmY2JlMCAw MDAwMDAwODAyOTI5OTkwCjB4MDAwMDdmZmZmZjlmY2IwMDogICAwMDAwMDAw ODAyOTQwNjMwIDAwMDAwMDA4MDI5NDNiMzAKMHgwMDAwN2ZmZmZmOWZjYjEw OiAgIDAwMDAyMDAwMDAwMDAwMDAgMDAwMDAwMDg0YmJjNjAwMAoweDAwMDA3 ZmZmZmY5ZmNiMjA6ICAgMDAwMDAwMDg0YmJjODAwMCAwMDAwMDAwODAyZjcy MDRlCjB4MDAwMDdmZmZmZjlmY2IzMDogICAwMDAwN2ZmZmZmOWZjYmE4IDAw MDAwMDA4MDJmN2U1ZTMKMHgwMDAwN2ZmZmZmOWZjYjQwOiAgIDAwMDAwMDA4 MzVlNTVhYjAgMDAwMDAwMDAwMDAwMDAwMAoweDAwMDA3ZmZmZmY5ZmNiNTA6 ICAgMDAwMDAwMDAwMDAwMDAwMCAwMDAwMDAwODRiYjg5ZGMwCjB4MDAwMDdm ZmZmZjlmY2I2MDogICAwMDAwMDAwMDAwMDAyYTQwIDAwMDA3ZmZmZmY5ZmNi NjgKMHgwMDAwN2ZmZmZmOWZjYjcwOiAgIDAwMDAwMDAwMDAwMDAwMDAgMDAw MDdmZmZmZjlmY2JlMAoweDAwMDA3ZmZmZmY5ZmNiODA6ICAgMDAwMDAwMDgw NjFhMjcyOCAwMDAwMDAwMDAwMDAwMDAwCjB4MDAwMDdmZmZmZjlmY2I5MDog ICAwMDAwMDAwODA2MWExZTU4IDAwMDAwMDAwMDAwMDAwMDAKMHgwMDAwN2Zm ZmZmOWZjYmEwOiAgIDAwMDA3ZmZmZmY5ZmNiYzggMDAwMDdmZmZmZjlmY2Mz OAoweDAwMDA3ZmZmZmY5ZmNiYjA6ICAgMDAwMDAwMDgwMmY3MjA0ZSAwMDAw MDAwMDAwMDAwMDAwCjB4MDAwMDdmZmZmZjlmY2JjMDogICAwMDAwMDAwODAy ZjdhNTk2IDAwMDAwMDAwMDAwMDVlOTggCgpJbnN0cnVjdGlvbnM6IChwYz0w eDAwMDAwMDA4MDE3YTY1YzMpCjB4MDAwMDAwMDgwMTdhNjViMzogICA0OCA4 OSA0ZCA5MCA0YyA4OSA0NSA4OCA0YyA4OSA0ZCA4MCA0OCA4YiA0NSA4MAow eDAwMDAwMDA4MDE3YTY1YzM6ICAgNDggOGIgMDAgNDggODkgNDUgYzAgNDgg OGIgNDUgODAgOGIgNDAgMDggODkgNDUgCgpTdGFjazogWzB4MDAwMDdmZmZm ZjhmZTAwMCwweDAwMDA3ZmZmZmY5ZmUwMDApLCAgc3A9MHgwMDAwN2ZmZmZm OWZjOWQwLCAgZnJlZSBzcGFjZT0xMDE4awpOYXRpdmUgZnJhbWVzOiAoSj1j b21waWxlZCBKYXZhIGNvZGUsIGo9aW50ZXJwcmV0ZWQsIFZ2PVZNIGNvZGUs IEM9bmF0aXZlIGNvZGUpCkMgIFtsaWJzcGxhc2hzY3JlZW4uc28rMHgyOTVj M10gIGluZmxhdGVfZmFzdCsweDIzCgpKYXZhIGZyYW1lczogKEo9Y29tcGls ZWQgSmF2YSBjb2RlLCBqPWludGVycHJldGVkLCBWdj1WTSBjb2RlKQpqICBq YXZhLnV0aWwuemlwLkluZmxhdGVyLmluZmxhdGVCeXRlcyhbQklJKUkrMApq ICBqYXZhLnV0aWwuemlwLkluZmxhdGVyLmluZmxhdGUoW0JJSSlJKzQwCmog IGphdmEudXRpbC56aXAuSW5mbGF0ZXJJbnB1dFN0cmVhbS5yZWFkKFtCSUkp SSs1MwpqICBzdW4ubWlzYy5SZXNvdXJjZS5nZXRCeXRlcygpW0IrNTcKaiAg amF2YS5uZXQuVVJMQ2xhc3NMb2FkZXIuZGVmaW5lQ2xhc3MoTGphdmEvbGFu Zy9TdHJpbmc7THN1bi9taXNjL1Jlc291cmNlOylMamF2YS9sYW5nL0NsYXNz OysyMTkKaiAgamF2YS5uZXQuVVJMQ2xhc3NMb2FkZXIuYWNjZXNzJDAwMChM amF2YS9uZXQvVVJMQ2xhc3NMb2FkZXI7TGphdmEvbGFuZy9TdHJpbmc7THN1 bi9taXNjL1Jlc291cmNlOylMamF2YS9sYW5nL0NsYXNzOyszCmogIGphdmEu bmV0LlVSTENsYXNzTG9hZGVyJDEucnVuKClMamF2YS9sYW5nL09iamVjdDsr NDMKdiAgflN0dWJSb3V0aW5lczo6Y2FsbF9zdHViCmogIGphdmEuc2VjdXJp dHkuQWNjZXNzQ29udHJvbGxlci5kb1ByaXZpbGVnZWQoTGphdmEvc2VjdXJp dHkvUHJpdmlsZWdlZEV4Y2VwdGlvbkFjdGlvbjtMamF2YS9zZWN1cml0eS9B Y2Nlc3NDb250cm9sQ29udGV4dDspTGphdmEvbGFuZy9PYmplY3Q7KzAKaiAg amF2YS5uZXQuVVJMQ2xhc3NMb2FkZXIuZmluZENsYXNzKExqYXZhL2xhbmcv U3RyaW5nOylMamF2YS9sYW5nL0NsYXNzOysxMwpqICBqYXZhLmxhbmcuQ2xh c3NMb2FkZXIubG9hZENsYXNzKExqYXZhL2xhbmcvU3RyaW5nO1opTGphdmEv bGFuZy9DbGFzczsrNDMKaiAgc3VuLm1pc2MuTGF1bmNoZXIkQXBwQ2xhc3NM b2FkZXIubG9hZENsYXNzKExqYXZhL2xhbmcvU3RyaW5nO1opTGphdmEvbGFu Zy9DbGFzczsrMzYKaiAgamF2YS5sYW5nLkNsYXNzTG9hZGVyLmxvYWRDbGFz cyhMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9DbGFzczsrMwpqICBq YXZhLmxhbmcuQ2xhc3NMb2FkZXIubG9hZENsYXNzSW50ZXJuYWwoTGphdmEv bGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvQ2xhc3M7KzIKdiAgflN0dWJSb3V0 aW5lczo6Y2FsbF9zdHViCgotLS0tLS0tLS0tLS0tLS0gIFAgUiBPIEMgRSBT IFMgIC0tLS0tLS0tLS0tLS0tLQoKSmF2YSBUaHJlYWRzOiAoID0+IGN1cnJl bnQgdGhyZWFkICkKICAweDAwMDAwMDA4MDI5MmEwMDAgSmF2YVRocmVhZCAi TG93IE1lbW9yeSBEZXRlY3RvciIgZGFlbW9uIFtfdGhyZWFkX2Jsb2NrZWQs IGlkPTQzMjM1NzEyXQogIDB4MDAwMDAwMDg0YmI5MTgwMCBKYXZhVGhyZWFk ICJDb21waWxlclRocmVhZDEiIGRhZW1vbiBbX3RocmVhZF9ibG9ja2VkLCBp ZD00MzIzNTMyOF0KICAweDAwMDAwMDA4NGJiOTEwMDAgSmF2YVRocmVhZCAi Q29tcGlsZXJUaHJlYWQwIiBkYWVtb24gW190aHJlYWRfYmxvY2tlZCwgaWQ9 NDMyMzQ5NDRdCiAgMHgwMDAwMDAwODRiYjkwODAwIEphdmFUaHJlYWQgIlNp Z25hbCBEaXNwYXRjaGVyIiBkYWVtb24gW190aHJlYWRfYmxvY2tlZCwgaWQ9 NDMyMzQ1NjBdCiAgMHgwMDAwMDAwODAyOTJmODAwIEphdmFUaHJlYWQgIkZp bmFsaXplciIgZGFlbW9uIFtfdGhyZWFkX2Jsb2NrZWQsIGlkPTQzMjM0MTc2 XQogIDB4MDAwMDAwMDgwMjkyZjAwMCBKYXZhVGhyZWFkICJSZWZlcmVuY2Ug SGFuZGxlciIgZGFlbW9uIFtfdGhyZWFkX2Jsb2NrZWQsIGlkPTQzMjMzNzky XQo9PjB4MDAwMDAwMDgwMjkyOTgwMCBKYXZhVGhyZWFkICJtYWluIiBbX3Ro cmVhZF9pbl9uYXRpdmUsIGlkPTEwNDk1MTA0XQoKT3RoZXIgVGhyZWFkczoK ICAweDAwMDAwMDA4MDI5MmU4MDAgVk1UaHJlYWQgW2lkPTQzMjMzNDA4XQog IDB4MDAwMDAwMDg0YmI5MjAwMCBXYXRjaGVyVGhyZWFkIFtpZD00MzIzNjA5 Nl0KClZNIHN0YXRlOm5vdCBhdCBzYWZlcG9pbnQgKG5vcm1hbCBleGVjdXRp b24pCgpWTSBNdXRleC9Nb25pdG9yIGN1cnJlbnRseSBvd25lZCBieSBhIHRo cmVhZDogTm9uZQoKSGVhcAogUFNZb3VuZ0dlbiAgICAgIHRvdGFsIDI2Njg4 SywgdXNlZCA0NThLIFsweDAwMDAwMDA4MzVlMjAwMDAsIDB4MDAwMDAwMDgz N2JlMDAwMCwgMHgwMDAwMDAwODRiMzcwMDAwKQogIGVkZW4gc3BhY2UgMjI5 MTJLLCAyJSB1c2VkIFsweDAwMDAwMDA4MzVlMjAwMDAsMHgwMDAwMDAwODM1 ZTkyOTA4LDB4MDAwMDAwMDgzNzQ4MDAwMCkKICBmcm9tIHNwYWNlIDM3NzZL LCAwJSB1c2VkIFsweDAwMDAwMDA4Mzc4MzAwMDAsMHgwMDAwMDAwODM3ODMw MDAwLDB4MDAwMDAwMDgzN2JlMDAwMCkKICB0byAgIHNwYWNlIDM3NzZLLCAw JSB1c2VkIFsweDAwMDAwMDA4Mzc0ODAwMDAsMHgwMDAwMDAwODM3NDgwMDAw LDB4MDAwMDAwMDgzNzgzMDAwMCkKIFBTT2xkR2VuICAgICAgICB0b3RhbCA2 MDk5MkssIHVzZWQgMEsgWzB4MDAwMDAwMDgwYjM3MDAwMCwgMHgwMDAwMDAw ODBlZjAwMDAwLCAweDAwMDAwMDA4MzVlMjAwMDApCiAgb2JqZWN0IHNwYWNl IDYwOTkySywgMCUgdXNlZCBbMHgwMDAwMDAwODBiMzcwMDAwLDB4MDAwMDAw MDgwYjM3MDAwMCwweDAwMDAwMDA4MGVmMDAwMDApCiBQU1Blcm1HZW4gICAg ICAgdG90YWwgMjEyNDhLLCB1c2VkIDI0MDdLIFsweDAwMDAwMDA4MDVmNzAw MDAsIDB4MDAwMDAwMDgwNzQzMDAwMCwgMHgwMDAwMDAwODBiMzcwMDAwKQog IG9iamVjdCBzcGFjZSAyMTI0OEssIDExJSB1c2VkIFsweDAwMDAwMDA4MDVm NzAwMDAsMHgwMDAwMDAwODA2MWM5YzQ4LDB4MDAwMDAwMDgwNzQzMDAwMCkK CkR5bmFtaWMgbGlicmFyaWVzOgoweDAwMDAwMDAwMDA0MDAwMDAgCS91c3Iv bG9jYWwvamRrMS42LjAvYmluL2phdmEKMHgwMDAwMDAwODAwNjQzMDAwIAkv bGliL2xpYnRoci5zby4zCjB4MDAwMDAwMDgwMDc1OTAwMCAJL2xpYi9saWJj LnNvLjcKMHgwMDAwMDAwODAwYjAwMDAwIAkvdXNyL2xvY2FsL2pkazEuNi4w L2pyZS9saWIvYW1kNjQvc2VydmVyL2xpYmp2bS5zbwoweDAwMDAwMDA4MDEz NGEwMDAgCS91c3IvbGliL2xpYnN0ZGMrKy5zby42CjB4MDAwMDAwMDgwMTU1 NjAwMCAJL2xpYi9saWJtLnNvLjUKMHgwMDAwMDAwODAxNjcwMDAwIAkvbGli L2xpYmdjY19zLnNvLjEKMHgwMDAwMDAwODAxNzdkMDAwIAkvdXNyL2xvY2Fs L2pkazEuNi4wL2pyZS9saWIvYW1kNjQvbGlic3BsYXNoc2NyZWVuLnNvCjB4 MDAwMDAwMDgwMThkZTAwMCAJL3Vzci9sb2NhbC9saWIvbGliWDExLnNvLjYK MHgwMDAwMDAwODAxYjBjMDAwIAkvdXNyL2xvY2FsL2xpYi9saWJYZXh0LnNv LjYKMHgwMDAwMDAwODAxYzFkMDAwIAkvdXNyL2xvY2FsL2xpYi9saWJpY29u di5zby4zCjB4MDAwMDAwMDgwMWUxNjAwMCAJL3Vzci9sb2NhbC9saWIvbGli eGNiLnNvLjIKMHgwMDAwMDAwODAxZjMwMDAwIAkvdXNyL2xpYi9saWJycGNz dmMuc28uNAoweDAwMDAwMDA4MDIwMzkwMDAgCS91c3IvbG9jYWwvbGliL2xp YlhkbWNwLnNvLjYKMHgwMDAwMDAwODAyMTNlMDAwIAkvdXNyL2xvY2FsL2xp Yi9saWJYYXUuc28uNgoweDAwMDAwMDA4MDI1MDAwMDAgCS91c3IvbG9jYWwv bGliL2xpYlhjdXJzb3Iuc28uMQoweDAwMDAwMDA4MDI2MGEwMDAgCS91c3Iv bG9jYWwvbGliL2xpYlhyZW5kZXIuc28uMQoweDAwMDAwMDA4MDI3MTMwMDAg CS91c3IvbG9jYWwvbGliL2xpYlhmaXhlcy5zby4zCjB4MDAwMDAwMDgwMmEw MDAwMCAJL3Vzci9sb2NhbC9qZGsxLjYuMC9qcmUvbGliL2FtZDY0L25hdGl2 ZV90aHJlYWRzL2xpYmhwaS5zbwoweDAwMDAwMDA4MDJiMGQwMDAgCS91c3Iv bG9jYWwvamRrMS42LjAvanJlL2xpYi9hbWQ2NC9saWJ2ZXJpZnkuc28KMHgw MDAwMDAwODAyYzFlMDAwIAkvdXNyL2xvY2FsL2pkazEuNi4wL2pyZS9saWIv YW1kNjQvbGliamF2YS5zbwoweDAwMDAwMDA4MDJkNTIwMDAgCS91c3IvbG9j YWwvamRrMS42LjAvanJlL2xpYi9hbWQ2NC9saWJ6aXAuc28KMHgwMDAwMDAw ODAyZTViMDAwIAkvbGliL2xpYnouc28uNAoweDAwMDAwMDA4MDA1MTEwMDAg CS9saWJleGVjL2xkLWVsZi5zby4xCgpWTSBBcmd1bWVudHM6CmphdmFfY29t bWFuZDogU3dpbmdTZXQyLmphcgpMYXVuY2hlciBUeXBlOiBTVU5fU1RBTkRB UkQKCkVudmlyb25tZW50IFZhcmlhYmxlczoKSkFWQV9IT01FPS91c3IvbG9j YWwvamRrMS42LjAKUEFUSD0vc2JpbjovYmluOi91c3Ivc2JpbjovdXNyL2Jp bjovdXNyL2dhbWVzOi91c3IvbG9jYWwvc2JpbjovdXNyL2xvY2FsL2Jpbjov aG9tZS90YW96aGVuL2JpbgpMRF9MSUJSQVJZX1BBVEg9L3Vzci9sb2NhbC9q ZGsxLjYuMC9qcmUvbGliL2FtZDY0L3NlcnZlcjovdXNyL2xvY2FsL2pkazEu Ni4wL2pyZS9saWIvYW1kNjQ6L3Vzci9sb2NhbC9qZGsxLjYuMC9qcmUvLi4v bGliL2FtZDY0ClNIRUxMPS9iaW4vY3NoCkRJU1BMQVk9OjAuMApIT1NUVFlQ RT1GcmVlQlNECk9TVFlQRT1GcmVlQlNECk1BQ0hUWVBFPXVua25vd24KClNp Z25hbCBIYW5kbGVyczoKU0lHU0VHVjogW2xpYmp2bS5zbysweDVkNTlkMF0s IHNhX21hc2tbMF09MHhmZmZlZmVmZiwgc2FfZmxhZ3M9MHgwMDAwMDA0MgpT SUdCVVM6IFtsaWJqdm0uc28rMHg1ZDU5ZDBdLCBzYV9tYXNrWzBdPTB4ZmZm ZWZlZmYsIHNhX2ZsYWdzPTB4MDAwMDAwNDIKU0lHRlBFOiBbbGlianZtLnNv KzB4NGE5M2YwXSwgc2FfbWFza1swXT0weGZmZmVmZWZmLCBzYV9mbGFncz0w eDAwMDAwMDQyClNJR1BJUEU6IFtsaWJqdm0uc28rMHg0YTkzZjBdLCBzYV9t YXNrWzBdPTB4ZmZmZWZlZmYsIHNhX2ZsYWdzPTB4MDAwMDAwNDIKU0lHSUxM OiBbbGlianZtLnNvKzB4NGE5M2YwXSwgc2FfbWFza1swXT0weGZmZmVmZWZm LCBzYV9mbGFncz0weDAwMDAwMDQyClNJR1VTUjE6IFNJR19ERkwsIHNhX21h c2tbMF09MHgwMDAwMDAwMCwgc2FfZmxhZ3M9MHgwMDAwMDAwMgpTSUdVU1Iy OiBbbGlianZtLnNvKzB4NGFiNWUwXSwgc2FfbWFza1swXT0weDAwMDAwMDAw LCBzYV9mbGFncz0weDAwMDAwMDQyClNJR0hVUDogW2xpYmp2bS5zbysweDRh YTM1MF0sIHNhX21hc2tbMF09MHhmZmZlZmVmZiwgc2FfZmxhZ3M9MHgwMDAw MDA0MgpTSUdJTlQ6IFtsaWJqdm0uc28rMHg0YWEzNTBdLCBzYV9tYXNrWzBd PTB4ZmZmZWZlZmYsIHNhX2ZsYWdzPTB4MDAwMDAwNDIKU0lHUVVJVDogW2xp Ymp2bS5zbysweDRhYTM1MF0sIHNhX21hc2tbMF09MHhmZmZlZmVmZiwgc2Ff ZmxhZ3M9MHgwMDAwMDA0MgpTSUdURVJNOiBbbGlianZtLnNvKzB4NGFhMzUw XSwgc2FfbWFza1swXT0weGZmZmVmZWZmLCBzYV9mbGFncz0weDAwMDAwMDQy ClNJR1VTUjI6IFtsaWJqdm0uc28rMHg0YWI1ZTBdLCBzYV9tYXNrWzBdPTB4 MDAwMDAwMDAsIHNhX2ZsYWdzPTB4MDAwMDAwNDIKCgotLS0tLS0tLS0tLS0t LS0gIFMgWSBTIFQgRSBNICAtLS0tLS0tLS0tLS0tLS0KCk9TOkJzZAp1bmFt ZTpGcmVlQlNEIDcuMS1SRUxFQVNFIEZyZWVCU0QgNy4xLVJFTEVBU0UgIzA6 IFRodSBNYXIgMjYgMTE6NDc6MzIgRURUIDIwMDkgICAgIHJvb3RAZ2VuZXNp cy5teS5kb21haW46L3Vzci9vYmovdXNyL3NyYy9zeXMvTVlLRVJORUwgYW1k NjQKcmxpbWl0OiBTVEFDSyA1MjQyODhrLCBDT1JFIGluZmluaXR5LCBOUFJP QyA1NTQ3LCBOT0ZJTEUgMTEwOTUKQ1BVOnRvdGFsIDggKDggY29yZXMgcGVy IGNwdSwgMiB0aHJlYWRzIHBlciBjb3JlKSBmYW1pbHkgNiBtb2RlbCAxMCBz dGVwcGluZyA0LCBjbW92LCBjeDgsIGZ4c3IsIG1teCwgc3NlLCBzc2UyLCBz c2UzLCBzc3NlMywgaHQKCk1lbW9yeTogNGsgcGFnZSwgcGh5c2ljYWwgNTg1 MTY2OGsoMTQ2MjkxN2sgZnJlZSkKCnZtX2luZm86IEphdmEgSG90U3BvdChU TSkgNjQtQml0IFNlcnZlciBWTSAoMS42LjBfMDMtcDQtcm9vdF8yNl9tYXJf MjAwOV8yMF8wNy1iMDApIGZvciBic2QtYW1kNjQsIGJ1aWx0IG9uIE1hciAy NiAyMDA5IDIwOjEyOjQzIGJ5ICJyb290IiB3aXRoIGdjYyA0LjIuMSAyMDA3 MDcxOSAgW0ZyZWVCU0RdCgo= --0-2121058618-1238114198=:53168--