Displaying 20 results from an estimated 400 matches similar to: "Problem with rjava in linux"
2002 Jul 08
3
integrate() (PR#1755)
Full_Name: Travis Porco
Version: 1.5.1 (6/17/2002)
OS: Suse Linux 7.1
Submission from: (NULL) (66.81.124.235)
This happens:
> integrate(function(x)1,0,1)
Error in integrate(function(x) 1, 0, 1) : evaluation of function gave a result
of wrong length
> integrate(function(x)x^2,0,1)
0.3333333 with absolute error < 3.7e-15
> integrate(function(x){cat(x);1},0,1)
0.5 0.01304674 0.9869533
2007 Oct 12
0
problems with java under debian (including the R help page search engine)
Dear List:
this is a problem that affects my use of R under Debian, but is a problem with
using the Java virtual machine. I am turning to this list, since I am hoping
someone might have more experience with trying to figure out why Java does not
work under Debian than I do. I apologize in advance for trying to exploit list
knowledge for a problem that is only tangential to the list.
I am
2013 Dec 18
0
[LLVMdev] Trying to use patchpoint in MCJIT
patchpoint is intended to be used in VMs that do their own linking, and so you wouldn't expect the function parameter to be resolved by LLVM.
Presumably, in VMKit, you could just plant a pointer constant to the function you wish to call initially?
-Filip
On Dec 17, 2013, at 2:42 PM, Gaël Thomas <gael.thomas00 at gmail.com> wrote:
> Hi all,
>
> I'm trying to play with
2013 Dec 17
3
[LLVMdev] Trying to use patchpoint in MCJIT
Hi all,
I'm trying to play with patchoint (with MCJIT and VMKit) and I don't
understand something. I generate this call for my first patch point.
Basically, I want to call f(0).
%5 = call i64 (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.i64(
i64 42, ;; patch point id is 42
i32 0, ;; 0 bytes for the padding
i8* bitcast (i32 (i32)* @f to i8*), ;; my function f
i32 1,
2012 May 09
0
Libvirt java binding crash Tomcat
Running on linux and libvirt 0.9.11. Using libvirt java 0.4.7. ?Notice that the Tomcat server crashes and shows the dump like this:
*** glibc detected *** jsvc.exec: double free or corruption (out): 0x086f14a8 ***
======= Backtrace: =========
/lib/libc.so.6[0xc03745]
/lib/libc.so.6(cfree+0x59)[0xc03b89]
/tmp/jna/jna486823639517928939.tmp(Java_com_sun_jna_Native_free+0x1d)[0x430c4c]
[0xb46de240]
2013 Dec 18
2
[LLVMdev] Trying to use patchpoint in MCJIT
Ok I see. Of course, at runtime, it's enough for dynamic linking or for
deoptimization. However, wmkit acts both as a jit and as an aot. For the
aot, it means that I can not use patchpoint and that I should have two
different compilation strategy. It's not so difficult, but in this case, I
can not use patchpoints to generate gc's stackmap for the aot (basically, I
think that I could
2019 Apr 17
2
JVM crashes during GC
Hi,
Could you tell me if the following is some known issue?
While performing the following simple test, I see my JVM crashing
(consistently):
1. Open a connection to an ESXi driver/host (passing ConnectAuthDefault
instance).
2. Close the connection.
3. Invoke GC
When GC is triggered, at some point, some unallocated native memory is
being tried to release. That's failing.
The error thrown
2019 Apr 18
0
Re: JVM crashes during GC
On 4/17/19 10:24 AM, Sachin Soman wrote:
> Hi,
>
> Could you tell me if the following is some known issue?
>
> While performing the following simple test, I see my JVM crashing
> (consistently):
> 1. Open a connection to an ESXi driver/host (passing ConnectAuthDefault
> instance).
> 2. Close the connection.
> 3. Invoke GC
>
> When GC is triggered, at some
2019 Apr 18
0
Re: [libvirt] JVM crashes during GC
I am attaching the execution results. At the top of each file I have
mentioned the environment details.
Following is the test program I have used:
==================================================
*package* org.libvirt;
*import* org.libvirt.jna.Libvirt;
*public* *class* LibvirtCrashTest {
*void* createAndDestroyDefaultAuthConnection() {
ConnectAuth ca = *new* ConnectAuthDefault();
*try*
2019 Apr 18
0
Re: [libvirt] JVM crashes during GC
I have tried the same tests using the "test" driver, and that works
perfectly; no errors seen.
Thanks & Regards
Sachin Soman
On Thu, Apr 18, 2019 at 11:03 PM Daniel P. Berrangé <berrange@redhat.com>
wrote:
> On Thu, Apr 18, 2019 at 10:46:19PM +0530, Sachin Soman wrote:
> > I am attaching the execution results. At the top of each file I have
> > mentioned
2019 Apr 23
0
Re: [libvirt] JVM crashes during GC
[Update]
Instead of passing an auth callback to Connect, if I store the credentials
in an INI file and pass the file path as authfile URI parameter, I dont see
these errors.
Thanks & Regards
Sachin Soman
On Sat, Apr 20, 2019 at 2:00 PM Sachin Soman <sachonline.soman@gmail.com>
wrote:
> Did you get a chance to debug the issue?
>
> Thanks & Regards,
> Sachin Soman
2019 Apr 18
1
Re: [libvirt] JVM crashes during GC
Note: A couple of times I have seen errors while closing the connection
(the trace ending with virFree). Also, a few times I have seen backtraces
which show the flow going via esx driver and finally failing to close
connection. Unfortunately I dont have those logs anymore.
The execution results I have shared have been obtained using Libvirt built
from source using the following config parameters:
2008 Jun 16
0
java stack trace using DTrace
Hi all
i want to view the stack trace of the real time java application using DTrace probes.
i am using jrts provider for finding the information of real time threads.
In this i have used the ustack(), jstack() and this gives the following type of information
libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsymbolHandle_5pnGThread__v_+0x5e
2019 Apr 20
2
Re: [libvirt] JVM crashes during GC
Did you get a chance to debug the issue?
Thanks & Regards,
Sachin Soman
On Thu, Apr 18, 2019, 11:10 PM Sachin Soman <sachonline.soman@gmail.com>
wrote:
> I have tried the same tests using the "test" driver, and that works
> perfectly; no errors seen.
>
> Thanks & Regards
> Sachin Soman
>
>
>
>
> On Thu, Apr 18, 2019 at 11:03 PM Daniel P.
2019 Apr 18
2
Re: [libvirt] JVM crashes during GC
On Thu, Apr 18, 2019 at 10:46:19PM +0530, Sachin Soman wrote:
> I am attaching the execution results. At the top of each file I have
> mentioned the environment details.
>
> Following is the test program I have used:
>
> ==================================================
>
> *package* org.libvirt;
>
>
> *import* org.libvirt.jna.Libvirt;
>
>
>
2019 Apr 18
3
Re: [libvirt] JVM crashes during GC
On Thu, Apr 18, 2019 at 05:51:06PM +0200, Michal Prívozník wrote:
> On 4/17/19 10:24 AM, Sachin Soman wrote:
> > Hi,
> >
> > Could you tell me if the following is some known issue?
> >
> > While performing the following simple test, I see my JVM crashing
> > (consistently):
> > 1. Open a connection to an ESXi driver/host (passing ConnectAuthDefault
2011 Aug 13
2
java permission denied
Hey guys,
I just tried installing jdk 1.0.7 on my centos 5.6 box and I am getting a permission denied error when I try to display the java version.
[root at VIRTCENT09:/usr/lib] #ln -s /usr/lib/jdk1.7.0 /etc/alternatives/jdk
[root at VIRTCENT09:/usr/lib] #ln -s /usr/lib/jdk1.7.0/bin/java /etc/alternatives/java
[root at VIRTCENT09:/usr/lib] #ln -s /etc/alternatives/java /usr/bin/java
[root at
2008 Nov 24
3
debugging a faulty jboss/application
>From time to time a jboss process would end eating all, the available CPU and the load avg would skyrocket.
Once the operators restarted jboss, the system''d be normal again (sometimes for weeks) until the next incident
Since we moved the app from a v440 running Solaris 10 8/07 to a t2000 running Solaris 10 5/08 the problem started to happen more frequently (2-3 times a week). The
2006 Feb 27
2
Resolving Dependencies
I am getting the following errors and don't know how/what to check to
learn which rpm they are in...
---> Package java-1.4.2-sun-devel.i586 0:1.4.2.10-1jpp set to be updated
---> Package java-1.4.2-sun.i586 0:1.4.2.10-1jpp set to be updated
--> Running transaction check
--> Processing Dependency: libjvm.so(SUNWprivate_1.1) for package:
java-1.4.2-sun
--> Processing
2012 May 17
1
Is there R 2.4 version_
Dear all,
I am trying to install the rJava package.
I am getting the following message
"libjvm.so: cannot open shared object file: No such file or directory"
at this web site I have found that (bottom part)
http://rwiki.sciviews.org/doku.php?id=packages:cran:rjava
that
Unix: if you encounter a message similar to this one:
Error in dyn.load(x, as.logical(local), as.logical(now)) :