Displaying 9 results from an estimated 9 matches for "runcommand".
Did you mean:
run_command
2007 Oct 12
1
[PATCH] Make runCommand() work with multiple screens.
---
src/screen.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/screen.c b/src/screen.c
index 41f031e..9fa2a11 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -3282,8 +3282,13 @@ runCommand (CompScreen *s,
if (fork () == 0)
{
+ size_t len = strlen (s->display->displayString);
+ char displayString[len + 16];
+ strcpy (displayString, s->display->displayString);
+ displayString[len - 1] = '0' + s->screenNum;
+
setsid ();
- putenv (s->display->di...
2010 May 06
1
R on kdeedu-svn library problem
...ine ?which uses R and I get the following
compiler output.
-------------------------------------------
?79%] Building CXX object
cantor/src/backends/R/rserver/CMakeFiles/cantor_rserver.dir/rserver.o
$SOURCES/kdeedu/cantor/src/backends/R/rserver/rserver.cpp: In member
function 'void RServer::runCommand(const QString&, bool)':
$SOURCES/kdeedu/cantor/src/backends/R/rserver/rserver.cpp:217:
warning: 'result' may be used uninitialized in this function
[ 79%] Building CXX object
cantor/src/backends/R/rserver/CMakeFiles/cantor_rserver.dir/rcallbacks.o
[ 79%] Building CXX object
canto...
2007 Oct 12
1
[PATCH] Start window decorator on all screens.
...un decorator command if no decorator is present on
- first screen */
if (!ds->dmWin)
- {
- if (fork () == 0)
- {
- putenv (display->displayString);
- execl ("/bin/sh", "/bin/sh", "-c", o->value.s, NULL);
- exit (0);
- }
- }
+ runCommand (s, o->value.s);
}
return TRUE;
--
1.5.3.4
--------------060706030707010404000400--
2004 May 19
3
pxelinux and http
Hello,
Is there any possibility pxelinux could have the ability to pull its
kernel/ramdisk/disk images/etc via http instead of tftp?
I would really like the ability to pxe boot a machine, have it tftp
pxelinux and its config file. Then, all the files listed in the config
file are pulled via http.
Michael
Disclaimer: The content of this message is my personal opinion only and
although I
2004 Jan 16
6
Comboot Menu
Since lot of people want this thing, I will try to take a stab at it.
For now, I will hard code the menu in the code, and then somebody else
can remove that restriction. May be we can add some kind of keyword to
the config file which syslinux ignores and the comboot menu does
something with it.
I have one question about comboot: If I write a DOS program using C
(compiled using watcom -3 -mt -osx
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...s really necessary.
* Installing *source* package 'pbatR' ...
** libs
g++ -I/usr/lib/R/include -I/usr/local/include -fPIC -O2 -g -pipe
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -m32 -march=i386 -mtune=pentium4
-fasynchronous-unwind-tables -c wait.cpp -o wait.o
wait.cpp: In function 'int runCommands()':
wait.cpp:77: warning: ignoring return value of 'int system(const
char*)', declared with attribute warn_unused_result
g++ -shared -L/usr/local/lib -o pbatR.so wait.o -L/usr/lib/R/lib -lR
** R
** save image
Loading required package: survival
Loading required package: splines
Loadin...
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...s really necessary.
* Installing *source* package 'pbatR' ...
** libs
g++ -I/usr/lib/R/include -I/usr/local/include -fPIC -O2 -g -pipe
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -m32 -march=i386 -mtune=pentium4
-fasynchronous-unwind-tables -c wait.cpp -o wait.o
wait.cpp: In function 'int runCommands()':
wait.cpp:77: warning: ignoring return value of 'int system(const
char*)', declared with attribute warn_unused_result
g++ -shared -L/usr/local/lib -o pbatR.so wait.o -L/usr/lib/R/lib -lR
** R
** save image
Loading required package: survival
Loading required package: splines
Loadin...
2007 Oct 18
4
[ANNOUNCE] compiz-0.6.2
...shading maximized windows.
Fix in-viewport calculation.
Use real screen number rather than 0.
Use real screen number rather than 0.
Get private pointer for the current screen.
Run external commands with a DISPLAY string adjusted for the screen number that was passed to runCommand.
putenv doesn't work properly with dynamically allocated strings that are free'd right after the putenv call.
Add NEWS entry for 0.6.2 release.
Bump version.
Tomas Carnecky (1):
Start window decorator on all screens.
2008 Feb 07
1
[ANNOUNCE] compiz-0.7.0
...etic ConfigureNotify when ignoring ConfigureRequest
events.
Use real screen number rather than 0.
Use real screen number rather than 0.
Get private pointer for the current screen.
Run external commands with a DISPLAY string adjusted for the screen
number that was passed to runCommand.
putenv doesn't work properly with dynamically allocated strings that are
free'd right after the putenv call.
Always allow focus for active window.
Added close window button and raise/lower window key options.
Added button options for minimize window and toggle wind...