search for: myprogram

Displaying 20 results from an estimated 36 matches for "myprogram".

2011 Jan 18
2
Surprise Thread Preemptions
Hi, I would like to know about which threads will be preempted by which on my OpenSolaris machine. Therefore, I ran a multithreaded program "myprogram" with 32 threads on my 24-core Solaris machine. I make sure that each thread of my program has same priority (priority zero), so that we can reduce priority inversions (saving preemptions -- system overhead). However, I ran the following script whoprempt.d to see who preempted myprogram thread...
2009 Aug 08
1
How to pass flags (arguments) to an application
Hi everyone. I have a problem running a Windows appilcation with wine. The application is a Acucobol program. When I run "wine wrun32.exe myprogram" it works ok. When I run "wine wrun32.exe -C config.cfg myprogram" wine says myprogram doesn't exist. Any help? -- Marcelo Arroyo
2003 Jan 08
3
Errors running R in Batch mode under Win2000
I have made many different attempts to run a R program in Batch mode. I run a DOS command like: C:\Progra~1\R\rw1061\bin\rterm.exe -q --no-restore --no-save myprogram.R out.txt What happens: 1. DOS Shell starts up well 2. R starts 3. I get the messages: "ARGUMENT 'myprogram.R' __ignored__" "ARGUMENT 'out.txt' __ignored__" 4. R Shell is ready to roll (which is nice, but not what I intended to get) Help is greatly app...
2018 Nov 26
3
CentOS 7 bash perhaps off topic
hi all, I have a small script that seems to be exiting and hitting the sleep 60... The smwebsocket just connects to the web socket provided and outputs the data. This works manually. the myprogram just opens a database and writes the line... My desire is to run the smwebsocket, connect to the websocket and output the data (line by line) when we get a line that matches Location take that line and output to the database. Seems simple. I desire this to keep the connection alive and just contin...
2012 Jan 21
1
recomile a dll file in R
dear all, I created a dll file from a fortran program. How I can recompile it in R? I use "dyn.load(F:/myprogram.dll)" without any error but when I run "source(F:/myprogram.r)" this error occurs: "Error in file(file, "r", encoding = encoding) : cannot open the connection In addition: Warning message: In file(file, "r", encoding = encoding) : cannot open file '...
2009 Jan 25
4
Too much functionality in WINE
Does anyone know of a way to compile a LITE wine - like a zinfandel I guess? I just want to be able to use - wine /mypathto/myprogram.exe. such as --disable-dev --without-notepad --without-ie.... After compiling wine 1.1.13 it works quite well... at least the parts of it that I have tested. There are so many things included that I will never use that basically just take up space. For instance the compile environment, how many...
2007 Dec 10
1
Question re: RWinEdt conflicting with my WinEdt
...nEdt 5.5, RWinEdt 1.7-9, and R 2.6.0 on WindowsXP. Somehow my configuration or start up files between RWinEdt and WinEdt are getting confused. Usually when I open either one, the last files I was working on *with that program* are opened automatically. So if I last used mydoc.tex in WinEdt and myprogram.R in RWinEdt those would open in the appropriate programs and there was no mixing up of the file lists between the two. But in the last month or so (and I don't think I've updated anything) whatever files I was last working with on either one show up. So if close WinEdt and then open RW...
2006 Dec 20
2
\Sexpr in MikTex
...on MikTex with earlier versions of R, I can not seem to get it to work with R-2.4.0. I run Sweave with MikTex using the following statement in Run under Accessories. latex -include-directory="C:\Program Files\R\R-2.4.0\share\texmf" "C:\Documents and Settings\Suzette\Desktop\MyFile\MyProgram.tex" Any advice would be much appreciated, Suzette Suzette Blanchard, Ph.D. Assistant Professor, Dept. of Biostatistics City of Hope National Medical Center and Beckman Research Institute 1500 East Duarte Road, Duarte, CA 91010-3000 sblanchard@coh.org <mailto:sblanchard@coh.org>...
2010 Aug 18
8
No wine command
I installed wine, but when I type wine in the console the command are not found! Please help me.
2009 Jul 07
2
Transferring files Mac OS X 10.5.6
...tion is that I downloaded a setup .exe to my Mac desktop and was able to use it to install my program with wine. Now I need to update the software and all I have available is the .exe for the program itself to replace in the program folder. basically, i need to replace wine "c:\program files\myprogram\oldmyprogram.exe" with user/Desktop/newmyprogram.exe Thanks, Mike (not Jake)
2009 Sep 23
1
Strange behaviour with global variable in C
I understand global variables can be a bad idea, but even so I would like to understand what is going on here... ### DESCRIPTION OF PROGRAM ### ...I have a strange bug on a global variable in some C code which I am compiling using $ MAKEFLAGS="CFLAGS=-g -O0" R CMD SHLIB myProgram.c the global variable in question is the log likelihood. In an old version of the program I initialized this as double loglik = -999999999999999 and in current versions I initialize this as double loglik = 0.0 and long sequences of 9s do not appear anywhere in the program now (I confirmed this...
2008 Jun 24
9
No Sound in Wine - disable / remove pulseaudio
Wine requires direct access to sound device(s) to make sound. This is true for both ALSA and OSS driver back-ends. However most sound servers are not compatible with neither of these back-ends. This also true about pulse-audio - it is not fully compatible with Wine. If you using new distro (Fedora 8, Ubuntu 8.04, SuSE 11) and do not have sound you should: 1. Report problem to your distro support
2004 Mar 01
2
dynamic linking
Hi, I want to set up a dynamic link between a library e.g. myLibrary.a and a C++ file myProgram.cc to use in R. Is this possible? If so how does one go about doing it? Any help will be greatly appreciated. Cheers, Sam.
2006 Nov 27
2
calling R from cmd line, loading in data sets on the call
...I would like to call an R script from the command line, and in the process pass in data sets and parameters ... right now, I manually specify the files to be read in as the data sets for the script, and then it processes, but I need to be able to automate this action from the cmd line. Rcmd myprogram.R is clearly documented as unable to take parameters passed to it ... I am on Windows, R 2.3.1 Thanks Matt [[alternative HTML version deleted]]
2007 Apr 04
1
Need mtrace (malloc debugging) help
...to trace memory leaks in my application. I followed following steps: 1. Added mtrace() function in the beginning of my main function. 2. exported the MALLOC_TRACE environment variable. $ export MALLOC_TRACE=memory.log 3. Run the program 4. trace the program for memory leaks. $ mtrace <myprogram> $MALLOC_TRACE But In 3rd step above, my system is hanging. Could anybody please help me to come out of this problem. If anybody have another solution for finding out memory leaks, then it is always welcome. Thanks & Regards, Sharad. [[alternative HTML version deleted]]
2007 Mar 19
0
Re: Multiple users without write permission on "drive_c"
...use a global "drive_c" directory without giving them write permissions > to it? > > So far I have a wrapper script which copies a '.wine' skeleton into the users > home directory with apropriate links in '.wine/dosdevices' and afterwards > calls 'wine $myprogram'. > That works up to the point where the user launches a file dialog in $myprogram > where he doesn't see any directories because of a > missing 'drive_c/windows/profiles/$USER'. > > Giving the users write access to 'drive_c/windows/profiles' is NOT an option...
2008 Apr 15
1
Running Windows console program
Hello, I have a Windows console program (not DOS) which must give me a console output. I run program using such command "wine myprogram.exe" in a bash window. Wine shows me no error, but I don't see any output of myprogram.exe Thank you for any suggestions. :)
2009 May 20
2
Creating a Rpm with a windows-program and wine included
Hello, I am trying to make an RPM for Linux that provides a windows program (That runs as a service on win) with included wine. The role model for this is google picasa. Picasa doesn?t need Wine to be installed. Can anyone give me advice on how this has to be done?
2010 May 01
4
Re: Access HTTPS/SSL enabled sites
Gert van den Berg wrote: > On Wed, Jan 6, 2010 at 08:52, matvrix <wineforum-user at winehq.org> wrote: > > > crypt32 has to be "Native, Builtin" > > > > > But if its not included with IE, you need to copy it for Windows, > otherwise the wine buildin gets used... In /usr/lib/wine is a crypt32.dll.so. How can I use the crypt32.dll from a windows
2011 Mar 05
1
Titan quest on web
...st today, install works, i test the game it works,I put my save game and I try to go joining a game on net. I had an error about C++ ... (it isn't important) Today 4 hours before I got the same bug on windows seven, solution was running game on administrator mode. I tried to do a sudo wine myprogram.exe, it give : Code: .wine is not owned by you So how can I solve my problem ? (it's not so important --> I say that because if solution isn't easy I won't spend time on this problem )