Mail Archives: cygwin/1999/06/10/09:09:31
Hi, I'm starting programming with Xlib and I tried to compile a simple
program which came with a tutorial:
// program: prog-1.cc
#include <X11/Xlib.h>
#include <assert.h>
#include <unistd.h>
#define NIL (0) // A name for the void pointer
main()
{
Display *dpy = XOpenDisplay(NIL);
assert(dpy);
Window w = XCreateWindow(dpy, DefaultRootWindow(dpy), 0, 0,
200, 100, 0,
CopyFromParent, CopyFromParent,
CopyFromParent,
NIL, 0);
XMapWindow(dpy, w);
XFlush(dpy);
sleep(10);
}
I compiled:
gcc -o prog-1 prog-1.cc -lX11 -L/usr/X11/lib
but when I ran:
~/./prog-1
0 0 [main] C:\usr\local\xlib-tutorial\prog-1.exe 1054
handle_exceptions: Exception: STATUS_ACCESS_VIOLATION
0 16529 [main] prog-1 1054 handle_exceptions: Dumping stack trace to
prog-1.exe.core
here goes the prog-1.exe.core:
12180 28709 [main] prog-1 1054 exception: trapped!
29314 58023 [main] prog-1 1054 exception: code 0xC0000005 at 0x4010BB
28475 86498 [main] prog-1 1054 exception: ax 0x1 bx 0x244FF60 cx
0x20F6B580 dx 0x320F6B58
33271 119769 [main] prog-1 1054 exception: si 0x0 di 0x246E8A0 bp 0x244FF44
sp 0x244FF0C
33346 153115 [main] prog-1 1054 exception: exception is:
STATUS_ACCESS_VIOLATION
49720 202835 [main] prog-1 1054 stack: Stack trace:
16945 219780 [main] prog-1 1054 stack: frame 0: sp = 0x244FD20, pc =
0x6100A11B
33525 253305 [main] prog-1 1054 stack: frame 1: sp = 0x244FD5C, pc =
0x77F94512
33268 286573 [main] prog-1 1054 stack: frame 2: sp = 0x244FD80, pc =
0x77F88EEB
49781 336354 [main] prog-1 1054 stack: frame 3: sp = 0x244FE0C, pc =
0x77F76266
27958 364312 [main] prog-1 1054 stack: frame 4: sp = 0x244FF44, pc =
0x6100442E
33274 397586 [main] prog-1 1054 stack: frame 5: sp = 0x244FF88, pc =
0x61004517
33341 430927 [main] prog-1 1054 stack: frame 6: sp = 0x244FF94, pc =
0x40124E
50136 481063 [main] prog-1 1054 stack: frame 7: sp = 0x244FFA4, pc =
0x40103A
16526 497589 [main] prog-1 1054 stack: frame 8: sp = 0x244FFC0, pc =
0x77F1B304
33317 530906 [main] prog-1 1054 stack: frame 9: sp = 0x244FFF0, pc = 0x0
33326 564232 [main] prog-1 1054 stack: End of stack trace
Do you have any idea about this ?
Oh yeah, I'm using cygwin-b20.1 and X11R6.4 libraries.
Thank you.
~/isaque>
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
- Raw text -