search for: xtopendisplay

Displaying 4 results from an estimated 4 matches for "xtopendisplay".

Did you mean: xopendisplay
2007 Oct 29
1
(PR#10379) Re: x11(....) kills R without DISPLAY
...>> Fedora release 7 (Moonshine) >> Kernel \r on an \m > > Agh, sorry. Yes, x11() (with or without $DISPLAY set) doesn't > die catatrophically, x11("validinfo") does. > > HTL The culprit would seem to be this bit of devX11.c 1302 xtdpy =3D XtOpenDisplay(app_con, NULL, "r_x11",=20 "R_x11", 1303 NULL, 0, &zero, NULL); 1304 toplevel =3D XtAppCreateShell(NULL, "R_x11", The 2nd arg to XtOpenDisplay is listed as display_string, so passing a=20 NULL here seems...
2004 Jun 25
4
X user application fails come up but xclock and xterm come up
Hi , I open secure Session with X11 forwarding. when run any standard X applicattion like xterm xclock it come up without any error. I start my user X application it fails. On User application side it fails when "xtOpenDisplay" system call with localhost:10.0. On SSH server debug message are : > debug1: X11 connection requested. > debug2: fd 20 setting TCP_NODELAY > debug2: fd 20 is O_NONBLOCK > debug2: fd 20 is O_NONBLOCK > debug1: channel 3: new [X11 connection from 127.0.0.1 port 47773] > debu...
2007 Oct 27
1
(PR#10379) Re: x11(....) kills R without DISPLAY
Hin-Tak Leung wrote: > Peter Dalgaard wrote: >> brechbuehler at gmail.com wrote: >>> Full_Name: Christian Brechbuehler >>> Version: 2.4.1, 2.5.1, OS: Ubuntu GNU/Linux >>> Submission from: (NULL) (24.61.47.236) >>> >>> > <snipped> >>> Example (start R without DISPLAY from bash): >>> % DISPLAY=3D R >>> >
2006 Oct 24
15
How to emit associative array after ^C
Boy am I a dummy. I want to simply dump out unfreed allocations when I terminate the script. What''s the secret sauce? #!/usr/sbin/dtrace -s pid$1::MyAlloc:return { bufs[arg1] = walltimestamp; } pid$1::MyFree:entry /bufs[arg0]/ { bufs[arg0] = 0; } This message posted from opensolaris.org