Displaying 8 results from an estimated 8 matches for "event_t".
Did you mean:
event_
2016 May 24
1
BitcodeReader non explicit error
...%opencl.event_t = type opaque...
2019 Oct 25
2
Where and how to report an optimisation issue that doesn't cause a crash
...inted by "queue_ptr" came to my mind too.</div>
<div dir="ltr">I also added this in the stackoverflow question at the bottom.</div>
<div dir="ltr">In such case, I assumed, that if I change the struct "queue_t" to have an array of "event_t" instead of just pointer to "event_t", like this:</div>
<div dir="ltr"> </div>
<div dir="ltr">
<pre><code>typedef struct
{
event_t queue[256]; // changed from pointer to array with max size
size_t...
2009 Nov 14
1
drivers- dynamically adding filedescriptors to poll
...ort asynchronous I/O in
libusb-1.0. The latter would be a huge improvement over the existing
libusb-0.1 (compatibility) interface we're using right now.
It is my intention to add something like the following:
typedef struct {
struct pollfd *fds;
nfds_t nfds;
event_handler_t *handler;
} event_t;
typedef struct {
struct pollfd fds;
void (*callback)(void *data);
void *data;
} event_handler_t;
int dstate_event_poll(event_t *events, int timeout);
int dstate_event_add(event_handler_t *handler);
int dstate_event_del(event_handler_t *handler);
When there is activity on a file descriptor, t...
2007 Oct 30
0
libswfdec/swfdec_button_movie.c
...Note to self: SwfdecButton _seriously_ needs a rewrite
diff --git a/libswfdec/swfdec_button_movie.c b/libswfdec/swfdec_button_movie.c
index c6132a6..8a18ef5 100644
--- a/libswfdec/swfdec_button_movie.c
+++ b/libswfdec/swfdec_button_movie.c
@@ -48,7 +48,7 @@ static const SwfdecButtonCondition event_table[2][4][4] = {
{ SWFDEC_BUTTON_OVER_UP_TO_IDLE, -1, -1, SWFDEC_BUTTON_OVER_UP_TO_OVER_DOWN },
{ -1, SWFDEC_BUTTON_OVER_DOWN_TO_OUT_DOWN, SWFDEC_BUTTON_OVER_DOWN_TO_OVER_UP, -1 } },
{ { -1, -1, SWFDEC_BUTTON_IDLE_TO_OVER_UP, -1 },
- { 0, -1, -1, SWFDEC_BUTTON_IDLE_TO_OVER_DOWN },
+...
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with
updates coming from blktap2.5.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>
2010 Jun 25
0
Wine release 1.2-rc5
...winecfg: Update Korean resource.
wininet: Update Korean resource.
avifil32: Update Korean resource.
mapi32: New Korean resource.
Ilya Basin (1):
shell32/tests: SHELL_ArgifyW(%2|%*|%~3, ...) tests.
Jacek Caban (4):
mshtml: Fixed event tests.
mshtml: Check if event_table entry is allocated before using it in remove_event_handler.
shdocvw: Return IHTMLDocument2's IDispatch in get_Document.
mshtml: Use correct iexplore.exe path in mshtml.inf.
Jose Rostagno (5):
wineconsole: Fix Spanish translation.
winecfg: Fix Spanish translation....
2013 Jul 15
6
[PATCH 0 of 6 RESEND v2] blktap3/sring: shared ring between tapdisk and the front-end
This patch series introduces the shared ring used by the front-end to pass
request descriptors to tapdisk, as well as responses from tapdisk to the
front-end. Requests from this ring end up in tapdisk''s standard request queue.
When the tapback daemon detects that the front-end tries to connect to the
back-end, it spawns a tapdisk and tells it to connect to the shared ring. The
shared
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...emitted on the button
diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
index 4a0874f..d1c0296 100644
--- a/libswfdec/swfdec_movie.c
+++ b/libswfdec/swfdec_movie.c
@@ -448,7 +448,7 @@ swfdec_movie_execute (SwfdecMovie *movie, SwfdecEventType condition)
return;
name = swfdec_event_type_get_name (condition);
if (name != NULL) {
- swfdec_as_object_call_with_security (thisp,
+ swfdec_as_object_call_with_security (SWFDEC_AS_OBJECT (movie),
SWFDEC_SECURITY (movie->resource), name, 0, NULL, NULL);
}
if (condition == SWFDEC_EVENT_CONSTRUCT)
commit 8c3c96c57a982eec...