search for: program2

Displaying 14 results from an estimated 14 matches for "program2".

Did you mean: program
2014 Mar 03
3
Re: method for communication between containers
...wing XML scripts. <filesystem type="mount" accessmode="passthrough"> <source dir="/tmp1"/> <target dir="/tmp1"/> </filesystem> 4) write two programs: program1 writes a string to the shared memory program2 reads the string from the shared memory and compile both programs in the host machine. both of the two programs use ftok() and shmget() to obtain the shmfs id. 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has written. b. if w...
2014 Mar 03
0
Re: method for communication between containers
...t;filesystem type="mount" accessmode="passthrough"> > <source dir="/tmp1"/> > <target dir="/tmp1"/> > </filesystem> > 4) write two programs: program1 writes a string to the shared memory > program2 reads the string from the shared memory > and compile both programs in the host machine. > both of the two programs use ftok() and shmget() to obtain the shmfs id. > 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has wri...
2014 Feb 27
2
method for communication between containers
Dear all, In my system, two containers need to exchange data as quick as possible and the two containers are hosted by the same physical machine, I wonder if socket is the only method for communication between containers? Thank you. Cheng Wang
2014 Apr 09
1
Re: method for communication between containers
...t;filesystem type="mount" accessmode="passthrough"> > <source dir="/tmp1"/> > <target dir="/tmp1"/> > </filesystem> > 4) write two programs: program1 writes a string to the shared memory > program2 reads the string from the shared memory > and compile both programs in the host machine. > both of the two programs use ftok() and shmget() to obtain the shmfs id. > 5) a. if we run both program1 and program2 in the host machine, the program2 can read the string that program1 has wri...
2009 Jun 15
1
USB bootable (using syslinux)
...ake it bootable? I mean in MS windows there's always a setup.exe or config.exe file! What's the equivalent here? 2 - I have a USB PenDrive (FAT32 file system) that has 2 boot options. Boot option 1 = runs program1.exe that updates my BIOS (it needs MSDOS command.com) Boot option 2 = runs program2.exe that executes a basic hardware test on the PC (it needs MSDOS command.com) Through my pendrive, I don't need to access any HDD or load any operative system. Presently, the pen drive is using a DOS bootstrap (like the one you obtain when you format a device using /s option under DOS). The...
2011 Jan 07
4
linux batch job "sleep" problem???
we have Redhat 5.5 on server. Recently we tried to use "sleep" command on batch job script some sleep work but some not sleep. any one have ideal? ==== sample program === #/bin/bash set -v program1 sleep 30 program2 sleep 60 program3 sleep 40 ...
2009 May 29
6
How to switch between current running wine apps
I really don't know how to google this or forum search this question as I have been trying to find the answer for an hour or so. I apologize if it's somewhere on the board spammed a lot but: How do I switch between different running wine apps. Pretty much, how do I use an emulated version of Alt+Tab in Wine? I don't know the hotkey, thanks!
2013 Jun 20
2
[PATCH] ocfs2: llseek requires to ocfs2 inode lock for the file in SEEK_END
...fileA, lseek the end of file. and print the position. 2) close the test fileA on NodeB: 1) open the test fileA, append the 5k data to test FileA. 2) lseek the end of file. and print the position. 3) close file. at first we run the test program1 on NodeA , the result is 10k. and then run the test program2 on NodeB, the result is 15k. at last, we run the test program1 on NodeA again, the result is 10k. after apply this patch. the three step result is 15k. Signed-off-by: jensen <shencanquan at huawei.com> --- fs/ocfs2/file.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fs...
2007 Jul 12
0
No subject
like this: print STDOUT "EXEC background /var/lib/asterisk/sounds/wait-moment \n" system("program2.agi &") exit; program 2 would run while the sound played. -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Eric "ManxPower" Wieling Sent: Tuesday, December 02, 2008 3:20 PM To: Asterisk...
2007 Jul 12
0
No subject
like this: print STDOUT "EXEC background /var/lib/asterisk/sounds/wait-moment \n" system("program2.agi &") exit; program 2 would run while the sound played. -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Eric "ManxPower" Wieling Sent: Tuesday, December 02, 2008 3:20 PM To: Asterisk...
2010 May 04
1
Virtual Desktop and multiple apps
Hi, I enable the 'emulate virtual desktop', and run two Windows app same time, how to switch between the two apps? Thanks, Angelo
2010 Sep 14
3
Keeping multiple wine versions
Hello.. I would like to use different wine versions on the same pc (not at the same time), is it possible in any way? I'm using ubuntu 10.4, no problems in cloning/compiling wine code. Thanks a lot.
2013 Jun 27
0
[PATCH V3] ocfs2: llseek requires to ocfs2 inode lock for the file in SEEK_END
...fileA, lseek the end of file. and print the position. 2) close the test fileA on NodeB: 1) open the test fileA, append the 5k data to test FileA. 2) lseek the end of file. and print the position. 3) close file. at first we run the test program1 on NodeA , the result is 10k. and then run the test program2 on NodeB, the result is 15k. at last, we run the test program1 on NodeA again, the result is 10k. after apply this patch. the three step result is 15k. Signed-off-by: Jensen <shencanquan at huawei.com> --- fs/ocfs2/file.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-...
2010 Feb 08
7
Running wine via php
Hi, I'm trying to run a command with wine via php: Code: <?php $test = shell_exec('wine c:\\\\.exe'); echo $test; ?> [/code]