Tagged Questions
1
vote
1answer
46 views
How network event FD_WRITE is generated when using Event Driven Sockets?
I am working on newtwork event based socket application.
When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.
Now according to my ...
3
votes
1answer
64 views
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
I have created 3 threads each thread has one socket each.
Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated.
The code works ...
0
votes
1answer
24 views
What happens with the remaining events if the number of events exceeds the maxevents argument given to epoll_wait()?
Is epoll chivalrous enough to hold onto the remaining events, and put them into the events array the next time epoll_wait() is called? Or does it simply trash them like a total jerk?
The man page ...
0
votes
0answers
71 views
Detecting appication's keyboard and mouse events inside a library
What I want to achieve:
The target is to make a Mac OS X library - dylib/bundle/framework, that intercepts all mouse and keyboard events of the application that loaded the library. I just want to log ...
1
vote
2answers
75 views
How to get keypress event in console
I'm learning C and have a problem with getting on_key_press_event without pressing Enter.
And of course i need character code. Is there solution?
1
vote
1answer
80 views
Porting WIN32 Application to Linux - Events Architecture
I have a WIN32 application and I'm porting it to LINUX GNU. I have event base C code in WIN32 app. Now i have tried few methods to implement the same in GNU linux but somehow i'm getting feeling that ...
0
votes
1answer
51 views
Void pointers in an event system
I'm writing an event system where the programmer can make his own events, but I'm having an issue with void pointers for passing event data. The event system works roughly like this:
typedef enum { ...
4
votes
3answers
168 views
Event driven design in c
this is a little theoretical question.
Imagine a device full of sensors. Now, in case a sensor x detects something, something should happen. Meanwhile, in case something else is detected, like two ...
0
votes
2answers
174 views
C SDL Keyboard Events SDL_KEYUP Triggering When Key Is Down
I am using SDL in C, and I'm trying to make a character move on the screen when a key is pressed, and stop when it is released, but it seems as if the KEYUP event is triggering when the key is still ...
1
vote
2answers
144 views
Is there a Windows equivalent for eventfd?
I am writing a cross-platform library which emulates sockets behaviour, having additional functionality in the between (App->mylib->sockets).
I want it to be the most transparent possible for the ...
2
votes
1answer
233 views
Lag using Xlib/X11 event handling in C
Beginner user of C here.
I'm trying to build a library in C using X11/Xlib so I can use it just for little projects and I'm running into a problem when trying to handle events to get input(button ...
0
votes
1answer
130 views
libevent: raise event on file change
I have the following code:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <event.h>
void fd_cb(int fd,short event,void *arg){
...
0
votes
0answers
112 views
Custom sink element hangs for 2 minutes
I created a custom sink element that prints out the data received. When I run my pipeline, it hangs for a minute or two, and then it starts printing the data. The is the debug info I get before it ...
0
votes
1answer
78 views
How to modify the registed event in Libevent?
I use libevent like this,
client->m_event = event_new(listener->m_server->m_server_base, client->m_sockfd, EV_PERSIST, Client::ClientEventCallback, client);
event_add(client->m_event, ...
1
vote
1answer
149 views
How to get event when new application launches using XCB
I am trying to make a very simple window manager for learning purposes. I am using C and the xcb library. I am trying to get an event raised if a new application is launched.
For now, I create a root ...
1
vote
1answer
115 views
Read Key pressings in C ex. Enter key
I know how to use events to test where a key is pressed or not, but in C i never found how to do that.
What i exactly want is a Keylistener that listens for the up, down, left and right keys. I need ...
2
votes
1answer
182 views
How to create own events in C/C++?
How should i create my own Events (This includes the code to bind the necessary callback) in c/C++ programming? It is directly available in Java.
0
votes
1answer
131 views
Use of CreateEvent() in Quake
I'm curious about the use of the CreateEvent() function in Quake.
We have the following global in the c file that WinMain() is defined in:
static HANDLE tevent;
In the WinMain() function itself, ...
-1
votes
1answer
95 views
How to Register and UnRegister events for Interrupt
Its not on Standard C, I was trying to develop application in C. Here is the scenario:Its like a power mode implementation of a processor, so that when the processor, wakes from sleep, an interrupt ...
0
votes
0answers
91 views
How to down propagate an event in gtk?
I have enter-notify-event and leave-notify-event connected on gtk_event_box which is placed in a fixed container which is in an event box so it can capture events. I have button-press-event enabled ...
0
votes
0answers
32 views
Content doesn't get repainted on first window maximize.
I have the following code in the windows expose event which draws a circle on the screen:
cairo_t *cr;
cr = gdk_cairo_create (widget->window);
cr = gdk_cairo_create ...
0
votes
1answer
289 views
How to capture event on event box to detect mouse movement in gtk?
Right now I have a motion_notify_event on an event_box to track mouse coordinates. I can detect motion only if I click on the event_box does any one know how I can capture the event on the event_box ...
0
votes
1answer
327 views
epoll and timeouts
I'm using epoll to manage about 20 to 30 sockets. I figure out that epoll_wait can be used to wait for some data to arrive over one of the socket but I'm missing how do I implement timeouts on socket ...
0
votes
0answers
27 views
Going from /dev/hidrawX to /dev/input/eventY
I am using libudev to see what is connected (which is a file like /dev/hidraw0), but I need to get the corresponding /dev/input/eventY file so I can listen to events from the device. How can I go from ...
0
votes
1answer
48 views
C - Handling events across processes
I'm trying to figure out how to set up an event that could be carried into a child process. I need this in order to calculate the time it took for the parent process to communicate with the child ...
0
votes
1answer
87 views
Firing an Play/Pause event in Linux
I would like to fire a Play/Pause event with a shell script or a C program on a Linux machine.
Unfortunately i haven't found a way to do this yet.
At first I thought of simulating a click on the ...
1
vote
1answer
342 views
GTKSDL - Handling events
For a 3D-modeling project I'm using SDL include in a GTK Widget thanks to GTKSDL.
It's simply a loading of a .obj file with GTK and modeling it thanks to OpenGL and then diplaying it in the SDL ...
1
vote
2answers
180 views
Signals and Callbacks in C?
Is there any way to create callbacks and signals in C?
I can use function pointer of course, but I want create a signal that can hold multiple functions i.e can bind to multiple events. Something ...
1
vote
1answer
389 views
C/libev: program closes when event is triggered
I have the following libev code:
#include <ev.h>
#include <stdio.h>
#include <errno.h>
#include <sys/socket.h>
#include <resolv.h>
#include <string.h>
#include ...
1
vote
0answers
761 views
C and libev: event not firing [closed]
I have the following libev code (code.c):
#include <ev.h>
#include <stdio.h>
#include <errno.h>
#include <sys/socket.h>
#include <resolv.h>
#include <string.h>
...
0
votes
1answer
57 views
How to spawn windows from other windows in GTK? (using C)
I was reading about GTK+-2.0, and everthing seemed cool enough. Then when I actually got to programming, I realized I had now idea how to make a new window pop up with a button press. I suppose I ...
0
votes
1answer
148 views
Reliable to use cudaEvent_t to measure CPU time?
I have a simple kernel without using multiple events, and i want to create a CPU version of it which i've done and measure the difference between them. I don't know if events are strictly created for ...
0
votes
1answer
150 views
How can I detect several keypresses in C GTK?
I'm writing a GTK based chat and want to implement the following:
In a GtkTextView when hitting Enter a message is sent, but hitting Shift+Enter types a new line.
I just can't figure out how to ...
2
votes
2answers
133 views
SDL Events Memory Leak
Are there any know methods or functions in SDL known to cause memory leaks?
I noticed for my program that as time when on, .1 MB of memory kept on being tacked onto the program's memory usage (ie. an ...
4
votes
1answer
504 views
What is the Gtk event called when a window minimizes?
If I want some function to be called when a window gets closed I connect with delete_event. What should I connect with if I want the function to be called when the user minimizes a Gtk Window. ...
0
votes
1answer
346 views
FindFirstChangeNotification fires multiple times
I have a simple application which spawns two threads and assigns one with a task of processing some file and saving the result to another one, while the other thread retrieves information about it's ...
2
votes
2answers
603 views
Generating mouse,key…etc events in linux
I am in a project where I will need to write a simple driver that accepts input from a USB device and preforms actions on GUI according to the received msg (Like writing a usb mouse driver but with my ...
2
votes
2answers
662 views
(Linux) Get /dev/input/eventX from an attached USB device with PID:VID
So my daemon will sit there and listen to udev, waiting for connect/disconnect events so it can notify the other thread to attach or stop reading from the /dev/input/eventX file.
Essentially, it's ...
1
vote
1answer
221 views
SDL left control keydown event is fired when key is released
So I have the following code that listens for a keydown event and then exits as soon as it receives one:
int main(int argc, char** argv) {
SDL_Init(SDL_INIT_VIDEO);
SDL_Surface* screen = ...
6
votes
3answers
728 views
USB event handling
I wish to do event handling in C/C++ monitoring USB activity-insertion and removal in Linux.Can you suggest me some resources where I can learn the same?
4
votes
2answers
479 views
are there any simple/example event-driven webservers in C?
There are many example thread based web servers online, but I haven't really seen anything that gives a good example of an event-loop based one (without being very complex, e.g. lighttp and nginx).
...
4
votes
1answer
361 views
Line-in jack sense with C/C++ in Ubuntu
This has probably been asked to death around here, but I could never get to a final solution (probably for good cause).
Anyway, is there any way in Ubuntu (I use Ubuntu 11.04 with kernel 2.6.38-8) to ...
3
votes
1answer
271 views
C GTK+ periodic event to update the UI
How can I update a GTK+ interface on a periodic event. For example, let's say I wanted to update a text field containing the time every 200 milliseconds. How is this typically done?
Update:
...
2
votes
1answer
55 views
C, 2 events and timing question
I will fork 3 threads,
One for event A, another for event B, third one for timing.
I will run A in every 3.2 sec, run B in every 1.7 sec.
My thought is in thread 3, at proper time, I call A or B.
...
5
votes
2answers
973 views
How to send events/signal from C to Java in JNI
Is there any mechanism to send asynchronous events/signals through JNI from C to Java or viceversa? I need to catch a signal/event from C to Java.
7
votes
1answer
1k views
Difference in Logoff notification events between Windows XP and Windows 7
I have a service / application which receives notifications of Windows session changes.
I have noted a difference in behaviour between Windows XP and Windows 7 and am trying to establish if it is a ...
21
votes
1answer
941 views
Problems using the wiiuse library and its events
I recently downloaded the wiiuse library and am having problems using it. I wrote a small code but the remote disconnects just after the connection. Even the code present at the author's website ...
0
votes
1answer
62 views
Linux signals with extra information parameter
I was to have some extra information in the callback to sa_sigaction handler, it does not seems possible.
So I was wondering if you could suggest me alternatives. Basic requirements:
Function A ...
0
votes
2answers
193 views
Why aren't my variables holding state after WaitForSingleObject?
I am implementing a Go Back N protocol for a networking class. I am using WaitForSingleObject to know when the socket on my receiver thread has data inside it:
int result = ...
1
vote
3answers
110 views
What to do when waiting for a event to finish
gcc 4.4.3 c89
I have a event loop that runs in a separate thread.
My design is like this below, just sample code to help explain.
I need to somehow wait for the initialization to complete before I ...


