search for: readconsol

Displaying 20 results from an estimated 20 matches for "readconsol".

Did you mean: readconsole
2010 Aug 20
2
segfault in embedded r after call to repldlldo1
Dear R developers, i've got a question concerning an embedded R instance. I called the initialization routines as seen in the "writing extensions" guide (Rf_initialize, setup_Rmainloop and R_ReplDLLinit). I also changed the function callback pointer of readconsole and writeconsoleex to my local functions. when i call mainloop there is no problem and the commands are evaluated as expected. because i don't want R to run in an own thread and my app should keep the control i want to use repldlldo1. within the readconsole as long as i copy commandlines...
2006 Apr 14
8
[rfc] [patch] 32/64-bit hypercall interface revisited
Last year we had a discussion[1] about how the hypercall ABI unfortunately contains fields that change width between 32- and 64-bit builds. This is a huge problem as we come up on the python management stack for ppc64, since the distributions ship 32-bit python. A 32-bit python/libxc cannot currently manage a 64-bit hypervisor. I had a patch but was unable to test it, and some other things were
2000 Sep 28
1
creating custom I/O for R
...would be a very helpful feature!) b. If not, is there a way to get a metafile and/or a bitmap of a plot without having first displayed the plot in the standard window? 2) Terminal a. Is possible to quickly explain the mechanism provided by the functions pointed at by the members WriteConsole and ReadConsole of the struct structRstart? I would appreciate any help and/or suggestions. Thanks, Don Wingate. P.S. Thankyou Prof. Ripley for your help earlier. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R...
2006 Nov 27
1
R.DLL mapping by P/Invoke
...port("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern int GA_initapp(int argc, string[] args); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern void readconsolecfg(); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern void setup_Rmainloop(); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern...
2008 Mar 19
1
R_ParseVector problem: it's cutting off after the decimal point
...;rp; R_DefParams(Rp); // root of the R installation Rp->rhome = get_R_HOME(); // root of the users directory Rp->home = getRUser(); // UImode: RGui, RTerm, LinkDLL Rp->CharacterMode = LinkDLL; // function which reads input for R from a console Rp->ReadConsole = myReadConsole; // function which writes output from R to a console Rp->WriteConsole = NULL; Rp->WriteConsoleEx = myWriteConsoleEx; // called during i/o, eval, graphics in ProcessEvents Rp->CallBack = myCallBack; // handles messages for the user from R Rp-&...
2007 Oct 17
0
Using R.dll in .NET IPC
...port("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern int GA_initapp(int argc, string[] args); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern void readconsolecfg(); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern void setup_Rmainloop(); [DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)] static extern...
2007 Mar 06
0
[PATCH] generate notification of new console ring data
This patch provides notification of console updates via VIRQ. The readconsolering capabilities provide the opportunity to provide console output to other clients (remote systems, logging systems, etc). This patchs adds the ability to generate a notification of a change in the console buffer. I have available both client and server programs that will take either serial line...
2012 Aug 20
0
Problem with initializiing R main loop under Windows (R.dll-version: 2.15.1)
...RParams.RestoreAction = SA_RESTORE; RParams.SaveAction = SA_NOSAVE; RParams.rhome = get_R_HOME (); RParams.home = getRUser (); RParams.CharacterMode = LinkDLL; // RGui; RParams.ShowMessage = RShowMessage; RParams.ReadConsole = RReadConsoleWin; RParams.WriteConsoleEx = RWriteConsoleEx; RParams.WriteConsole = 0; RParams.CallBack = RDoProcessEvents; RParams.YesNoCancel = RAskYesNoCancel; RParams.Busy = RBusy; // Install own handlers R...
2010 Sep 07
1
Is an R sub-session somehow possible?
I wrote the interface between R and TeXmacs. Recently, I added tab completion. However, there is one slight problem. In order to enable easy interaction with R, I (I.e. my program) interact with the command-line interface. This means that the user can invoke demo(), and then R will interact with the user and ask to press enter. It also means that the user can enter a<-c(3,4 and then R will
2012 Dec 15
1
Could Rstd_Busy do something (src/unix/sys-std.c)?
Currently the function Rstd_Busy() does nothing (src/unix/sys-std.c): void attribute_hidden Rstd_Busy(int which) { } The function is called through a pointer and R interfaces can change this pointer and, thus, use a different function. I don't plan to create a whole new interface to R, but I maintain a package whose aim is to provide a new feature to R when it's running in a
2007 Jan 18
0
Emulating a REPL in frontends
...from the standard REPL as available e.g. in R_ReplDLLdo1(). First some thoughts on what is needed, and what is already there, or missing. If you want to skip over this, a short summary is provided in the second half, below a line marked "--------": Read stage: - R_ReplDLLdo1() calls ReadConsole to fetch an input buffer. This is not well ideally for some situations. For example, the "Console", and the R process may be running on different machines. Or a frontend may provide several consoles or console-alikes working on the same workspace. Or the frontend may want to differen...
2013 Feb 13
4
[PATCH 0/3] FLASK policy build rework
These patches update the example FLASK policy shipped with Xen and enable its build if the required tools are present. The third patch requires rerunning autoconf to update tools/configure. [PATCH 1/3] flask/policy: sort dom0 accesses [PATCH 2/3] flask/policy: rework policy build system [PATCH 3/3] tools/flask: add FLASK policy to build
1999 Oct 09
2
Re: R-0.65.1 for WinNT/9XRe: R-0.65.1 for WinNT/9X
Hello. I've dowloaded R-0.65.1 for WinNT/9X. >There is more support for (support of) ActiveX Automation via the >Rproxy.dll: see the file front-ends/readme. And where is this "the file front-ends/readme" which describes R's ActiveX Automation ? In "readme" under "r-install path\" and FAQ for Win port, no description about this. Please teach me.
1999 Oct 09
2
Re: R-0.65.1 for WinNT/9XRe: R-0.65.1 for WinNT/9X
Hello. I've dowloaded R-0.65.1 for WinNT/9X. >There is more support for (support of) ActiveX Automation via the >Rproxy.dll: see the file front-ends/readme. And where is this "the file front-ends/readme" which describes R's ActiveX Automation ? In "readme" under "r-install path\" and FAQ for Win port, no description about this. Please teach me.
2003 Jul 16
2
Fatal error in SJava.
Dear r-helpers, I have been trying to invoke R from Java in a Windows 2000 computer (unfortunately). All my environment variables seem to be properly set, everything seems to be in order, but I obtaining a Fatal error: unable to open the base package error window. Also, the output of the invoker is Loading RInterpreter library R_HOME: R_HOME=C:/Programas/R RVersion: R_VERSION=1.6.1 whereas
2020 Sep 25
0
Wine release 5.18
...mpile_vk(). wined3d: Implement sample masks for the Vulkan adapter. Jacek Caban (42): conhost: Introduce IOCTL_CONDRV_READ_CONSOLE ioctl. conhost: Add support for ENABLE_ECHO_INPUT. conhost: Add support for ENABLE_LINE_INPUT. kernel32: Use IOCTL_CONDRV_READ_CONSOLE in ReadConsoleW when possible. kernel32: Use NtDeviceIoControlFile directly for IOCTL_CONDRV_READ_CONSOLE and IOCTL_CONDRV_WRITE_CONSOLE. conhost/tests: Improve handling slow conhost replies. conhost/tests: Allow clear screen on console exit. conhost/tests: Add ReadConsole tests. co...
2014 Apr 18
0
Wine release 1.7.17
...egistrationInfo string properties. kernel32: Filter out console handles in GetFileSize. include/xmldomdid.h: Synchronize with msxml2did.h. secur32: Also recognize samba4 failure message if ntlm_auth could not connect to winbindd. kernel32: Handle memory allocation failure in ReadConsoleA. kernel32: Add a workaround for broken apps that pass negative values to ReadConsole. ole32: Add support for VT_INT/VT_UINT to PropVariantClear and PropVariantCopy. ole32/tests: Add more tests for PropVariantClear. ole32: PropVariantClear should always reset contents of th...
2020 Oct 23
0
Wine release 5.20
...console. conhost: Store title as zero terminated string. conhost: Set console window title. kernelbase: Use conhost in AllocConsole. wineconsole: Reimplement as AllocConsole wrapper. kernel32: Always use conhost for WriteConsoleW. kernel32: Always use conhost for ReadConsoleW. kernel32: Move ReadConsole and WriteConsole to kernelbase. kernelbase: Remove window position adjustment from SetConsoleCursorPosition. kernelbase: Remove no longer needed free_console server call from FreeConsole. server: Remove no longer used console requests. ser...
2013 Feb 07
5
[PATCH v8] gcov: Coverage support
Updated set of patches for coverage. Changes: - change copyright lines - use gcov: instead of cover: in commit comment - use #ifdef in xen/common/sysctl.c instead of dummy inline function - added base documentation in docs/misc - added -h option to xencov
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -