X11 programming, some questions
I would like to make a simple visualisation using X11. I don't want a fancy guy with buttons and stuff, I simply want to display an ordinary line chart in a window and that's it.
Since I have not that much experience in programming X11, I used this example code:
https://rosettacode.org/wiki/Window_creation/X11#Xlib
It compiles fine and works, but when the window it creates is closed, the error
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 11 requests (9 known processed) with 0 events remaining.
appears in the terminal. So I wonder what the reason for this could be and how it could be fixed?
x11
add a comment |
I would like to make a simple visualisation using X11. I don't want a fancy guy with buttons and stuff, I simply want to display an ordinary line chart in a window and that's it.
Since I have not that much experience in programming X11, I used this example code:
https://rosettacode.org/wiki/Window_creation/X11#Xlib
It compiles fine and works, but when the window it creates is closed, the error
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 11 requests (9 known processed) with 0 events remaining.
appears in the terminal. So I wonder what the reason for this could be and how it could be fixed?
x11
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56
add a comment |
I would like to make a simple visualisation using X11. I don't want a fancy guy with buttons and stuff, I simply want to display an ordinary line chart in a window and that's it.
Since I have not that much experience in programming X11, I used this example code:
https://rosettacode.org/wiki/Window_creation/X11#Xlib
It compiles fine and works, but when the window it creates is closed, the error
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 11 requests (9 known processed) with 0 events remaining.
appears in the terminal. So I wonder what the reason for this could be and how it could be fixed?
x11
I would like to make a simple visualisation using X11. I don't want a fancy guy with buttons and stuff, I simply want to display an ordinary line chart in a window and that's it.
Since I have not that much experience in programming X11, I used this example code:
https://rosettacode.org/wiki/Window_creation/X11#Xlib
It compiles fine and works, but when the window it creates is closed, the error
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 11 requests (9 known processed) with 0 events remaining.
appears in the terminal. So I wonder what the reason for this could be and how it could be fixed?
x11
x11
asked Nov 21 '18 at 18:47
T. PluessT. Pluess
1288
1288
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56
add a comment |
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56
add a comment |
1 Answer
1
active
oldest
votes
Use The Source, Luke.
while (1) {
XNextEvent(d, &e);
if (e.type == Expose) {
XFillRectangle(d, w, DefaultGC(d, s), 20, 20, 10, 10);
XDrawString(d, w, DefaultGC(d, s), 10, 50, msg, strlen(msg));
}
if (e.type == KeyPress)
break;
}
XCloseDisplay(d);
If you exit the loop by pressing a key, you call XCloseDisplay(). If you kill the window "from the outside" (say, with your mouse) that function is never called. The process goes away abruptly, and X warns you about it.
On my system at least, kill(1) doesn't produce the warning, either. I suspect there's some interaction with your window manager, something you'll deal with later in your xlib education. :-)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53418710%2fx11-programming-some-questions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use The Source, Luke.
while (1) {
XNextEvent(d, &e);
if (e.type == Expose) {
XFillRectangle(d, w, DefaultGC(d, s), 20, 20, 10, 10);
XDrawString(d, w, DefaultGC(d, s), 10, 50, msg, strlen(msg));
}
if (e.type == KeyPress)
break;
}
XCloseDisplay(d);
If you exit the loop by pressing a key, you call XCloseDisplay(). If you kill the window "from the outside" (say, with your mouse) that function is never called. The process goes away abruptly, and X warns you about it.
On my system at least, kill(1) doesn't produce the warning, either. I suspect there's some interaction with your window manager, something you'll deal with later in your xlib education. :-)
add a comment |
Use The Source, Luke.
while (1) {
XNextEvent(d, &e);
if (e.type == Expose) {
XFillRectangle(d, w, DefaultGC(d, s), 20, 20, 10, 10);
XDrawString(d, w, DefaultGC(d, s), 10, 50, msg, strlen(msg));
}
if (e.type == KeyPress)
break;
}
XCloseDisplay(d);
If you exit the loop by pressing a key, you call XCloseDisplay(). If you kill the window "from the outside" (say, with your mouse) that function is never called. The process goes away abruptly, and X warns you about it.
On my system at least, kill(1) doesn't produce the warning, either. I suspect there's some interaction with your window manager, something you'll deal with later in your xlib education. :-)
add a comment |
Use The Source, Luke.
while (1) {
XNextEvent(d, &e);
if (e.type == Expose) {
XFillRectangle(d, w, DefaultGC(d, s), 20, 20, 10, 10);
XDrawString(d, w, DefaultGC(d, s), 10, 50, msg, strlen(msg));
}
if (e.type == KeyPress)
break;
}
XCloseDisplay(d);
If you exit the loop by pressing a key, you call XCloseDisplay(). If you kill the window "from the outside" (say, with your mouse) that function is never called. The process goes away abruptly, and X warns you about it.
On my system at least, kill(1) doesn't produce the warning, either. I suspect there's some interaction with your window manager, something you'll deal with later in your xlib education. :-)
Use The Source, Luke.
while (1) {
XNextEvent(d, &e);
if (e.type == Expose) {
XFillRectangle(d, w, DefaultGC(d, s), 20, 20, 10, 10);
XDrawString(d, w, DefaultGC(d, s), 10, 50, msg, strlen(msg));
}
if (e.type == KeyPress)
break;
}
XCloseDisplay(d);
If you exit the loop by pressing a key, you call XCloseDisplay(). If you kill the window "from the outside" (say, with your mouse) that function is never called. The process goes away abruptly, and X warns you about it.
On my system at least, kill(1) doesn't produce the warning, either. I suspect there's some interaction with your window manager, something you'll deal with later in your xlib education. :-)
answered Nov 21 '18 at 20:19
James K. LowdenJames K. Lowden
5,28211025
5,28211025
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53418710%2fx11-programming-some-questions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
We're a knowledge base, not a help forum -- each question should be exactly one question, posed as a Minimal, Complete, and Verifiable example with everything necessary for someone to reproduce the problem themselves and test proposed answers.
– Charles Duffy
Nov 21 '18 at 18:56