Displaying 20 results from an estimated 11000 matches similar to: "Accessing shared memory"
2012 Jun 27
1
[LLVMdev] Performance of JNI in VMKit
Hi Nicolas,
thanks for your detailed answer! Now I understand the issues a little better.
I'm going to install LLVM + Vmkit and try it out using JNI.
Regarding the garbage collector, do you think that the Garbage Collection ABI
of C++11 could be implemented in a way compatible to the JVM's garbage collector?
http://www2.research.att.com/~bs/C++0xFAQ.html#gc-abi
Perhaps this could make
2012 Jun 20
2
[LLVMdev] Performance of JNI in VMKit
Dear developers,
Are there any benchmarks for the performance of Java Native Interface (JNI)
calls in VMKit? Since VMKit is based on LLVM which can also run C++ code
(maybe in the same just-in-time compiler?) I guess calls from Java to C++ and
back could be much faster than in Sun's JVM which has extremely slow C++ ->
Java callbacks.
If this was the case, this would be a big advantage of
2012 Jun 23
0
[LLVMdev] Performance of JNI in VMKit
Hi Bruno,
On Wed, Jun 20, 2012 at 3:04 PM, Bruno Daniel <abml at mailoo.org> wrote:
> Dear developers,
>
> Are there any benchmarks for the performance of Java Native Interface (JNI)
> calls in VMKit? Since VMKit is based on LLVM which can also run C++ code
> (maybe in the same just-in-time compiler?) I guess calls from Java to C++
> and
> back could be much faster
2004 Feb 05
1
FreeBSD Security Advisory FreeBSD-SA-04:02.shmat
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
=============================================================================
FreeBSD-SA-04:02.shmat Security Advisory
The FreeBSD Project
Topic: shmat reference counting bug
Category: core
Module: kernel
Announced: 2004-02-05
2009 Jan 13
1
Shared Memory and Memory Mapped I/O
I am running wine 1.1.12 on Solaris 10. I have a windows application running with wine that interfaces to other applications via "shared memory" or "memory mapped I/O" or what ever the official name for this is. In windows I would typically use something like
Code:
token.hFileMapping = OpenFileMapping(0xF001F, false, "test");
token.location =
2004 Apr 13
1
shared mem advice
Hi,
I want to write a package where I would use
shared memory for some vectors
Any suggestion is appreciated...
I wonder if the right approach would be to
modify add a modified version of the
allocVector(SEXPTYPE type, int length) function
specifically
shared_mem_id = shmget(shared_mem_key,
SHM_SIZE,
IPC_CREAT);
2007 May 30
5
java bindings 1.0.0 - jni.h not found
Hi all,
I am new to Xapian and want to use it with Java. In order to do that I tried
to compile the Java bindings. I set XAPIAN_CONFIG and invoked "configure".
However "./configure --with-java" exits with an error.
Point of failure:
checking for jni.h... no
checking for jni.h in /usr/lib/jvm/java-1.5.0-sun/include... no
checking for jni.h in
2019 Jan 22
4
So nearly there, but can't install rJava
As ever, I learn from this: I didn't know apt-file. Got it, installed it, used it:
root at DebianAdvent:/home/chris/Downloads/gmp-6.1.2# apt-file search jni.h
android-libnativehelper-dev: /usr/include/android/nativehelper/jni.h
android-platform-frameworks-native-headers: /usr/include/android/android/asset_manager_jni.h
android-platform-frameworks-native-headers:
2019 Jan 22
2
So nearly there, but can't install rJava
Wow, this has amplified my respect and gratitude for the R Debian repositories. Doing all the install.packages() and following the clues about missing dependencies has taken hours! However, I have almost all the packages I want installed on this machine and Rstudio and the shiny server are installed and running fine. Bizarrely, to my mind, I am totally failing on rJava and hence a number of
2010 Mar 19
1
Can't setup rJava under ubuntu
When I try to install rJava, I get the following error:
> install.packages('rJava')
...
checking whether siglongjmp is declared... yes
checking Java support in R... present:
interpreter : '/usr/bin/java'
archiver : '/usr/bin/jar'
compiler : '/usr/bin/javac'
header prep.: '/usr/bin/javah'
cpp flags :
2009 Aug 04
2
100% CPU when running (cran2deb) JGR on Debian
Dear all,
I installed the amd64 cran2deb [1] JGR binaries on a fresh Debian
testing, and JGR is missbehaving. When JGR starts up, one core of the
CPU goes to 100% and stays there, even though I am keeping it idle and
not performing any operation.
I tried JGR with both sun-java6-jdk and openjdk-6-jdk,
debian-liv:/home/liviu# update-alternatives --config java
There are 4 choices for the alternative
2015 Oct 17
3
R 3.2.2 - make check and install package hang
Hello Everyone,
After trying several ways to compile R 3.2.2 without luck, I?m reaching out for help.
The ?make check? does not hanges for some reason and when
trying to install a package it cannot list the download sites (see below).
What could be the problem?
./configure --enable-R-shlib --enable-BLAS-shlib
hostname = test
uname -m = x86_64
uname -r = 2.6.32-573.7.1.el6.x86_64
uname -s =
2009 Apr 30
1
rjava - JDK not found
Hi,
I would like to test the new package RGG (R Gui Generator). This package requires the installation of several other package.
One of them is rJava.
I installed sun-java6-jdk and run the R CMD javareconf but the installation still fails !
Do you have any ideas ?
* Installing *source* package ‘rJava’ ...
checking for gcc... gcc -std=gnu99
checking for C compiler default output file
2019 Apr 18
1
rJava failed to install in Ubuntu
Hi,
I was trying install rJava package but failed to install with below error:
*trying URL 'https://cloud.r-project.org/src/contrib/rJava_0.9-11.tar.gz
<https://cloud.r-project.org/src/contrib/rJava_0.9-11.tar.gz>'*
*Content type 'application/x-gzip' length 675188 bytes (659 KB)*
*==================================================*
*downloaded 659 KB*
** installing
2013 Feb 24
7
Help: rJava ubuntu 12.04
Hola buenas,
utlimamente estoy teniendo más problemas con mi equipo de los que debería.
Bajo windows no me funciona bien Rstudio y bajo linux soy incapaz de
instalar rJava. ¿Alguien que sepa de Linux me podría ayudar?
He probado a instalar los openJDK y nada.
También he probado, para instalar Java, a hacer un:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update && sudo
2004 Dec 29
2
help with Rcmd check
I've been working on a package that requires a shared library to be loaded.
I have used the NAMESPACE file to load the library according to:
http://cran.r-project.org/doc/manuals/R-exts.html#Load%20hooks
<http://cran.r-project.org/doc/manuals/R-exts.html#Load%20hooks>
my shared library is "excelpoi.so" hence I have added "useDynLib(excelpoi)"
to my NAMESPACE file.
2012 Feb 18
1
help updating package rJava (on ubuntu)
Esteemed useRs and Devs,
Attempts to update package:rJava to the latest version have failed. See
my code and output below.
Notably, as suggested here
http://stackoverflow.com/questions/3311940/r-rjava-package-install-failing
$ sudo apt-get install r-cran-rjava
ran successfully without error or warning, but my rJava package is not
updated, and remains un-updatable...
Greatly appreciate any
2010 Mar 09
1
rJava works on karmic for root but not for user sean
Good afternoon,
A strange one - library(rJava) works for root but not for user sean
On 64-bit Ubuntu 9.10, using R as root (sudo -i), I can say
library(rJava)
and it works fine with no error message of any kind. But logged in as
myself user "sean", it can't start...
sean at SeansPC:~$ R --no-save --vanilla
R version 2.10.1 (2009-12-14)
Copyright (C) 2009 The R Foundation for
2011 Aug 27
2
[LLVMdev] JVM bytecode generation vs. LLVM
Sorry if I'm repeating something that was already said.
I was just thinking "why the heck do I seem headed for JVM generation if
what I want to use is LLVM", and this is the result:
I'm coming from a Java background. I'm using Eclipse, I'm used to the
syntax highlighting, cross referencing and refactoring support that
Eclipse offers.
I know I will want to have the
2019 Jun 12
2
Wildcard patterns in `--undefined` linker option
On Tue, Jun 11, 2019 at 10:54 PM Peter Smith <peter.smith at linaro.org> wrote:
> On Tue, 11 Jun 2019 at 14:31, Rui Ueyama via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
> >
> > Hi,
> >
> > I got a feature request from an internal customer of lld, but I don't
> know whether we should implement it or not, so I'd like to get opinions
>