search for: callbackid

Displaying 6 results from an estimated 6 matches for "callbackid".

Did you mean: callback_id
2012 Oct 24
0
Libvirt event for disk change is not being registered by DomainEventRegisterAny()
...the KVM hypervisor through libvirt events. Recently I have upgraded my libvirt from 9.4 to 9.10 and I have this issue. While *de-registering* for DomainEventDiskChangeCallback, I get a libvirt error saying 'libvirtError: internal error domain event 2 not registered;' where 2 is the callbackid returned by virConnectDomainEventRegisterAny() for the disk change event type. This error didn?t occur when I used libvirt 0.9.4-23.el6_2.6 Can you please enlighten me on the recent changes that has been made? Also, is the diskchange event a part of the domains life cycle event? Any hel...
2012 Oct 25
0
Please help: Libvirt event for disk change is not being registered by DomainEventRegisterAny()
...the KVM hypervisor through libvirt events. Recently I have upgraded my libvirt from 9.4 to 9.10 and I have this issue. While *de-registering* for DomainEventDiskChangeCallback, I get a libvirt error saying 'libvirtError: internal error domain event 2 not registered;' where 2 is the callbackid returned by virConnectDomainEventRegisterAny() for the disk change event type. This error didn?t occur when I used libvirt 0.9.4-23.el6_2.6 Can you please enlighten me on the recent changes that has been made? Also, is the diskchange event a part of the domains life cycle event? Any hel...
2008 Aug 06
1
RGtk2 on linux: "stack smashing detected"
...gt; Error: could not find function "GtkWindow" > > foo <- gtkWindow() > > butt <- gtkButton("error") > > gSignalConnect(butt, "clicked", function(...) stop("hello")) > clicked > 16 > attr(,"class") > [1] "CallbackID" > > foo$add(butt) > ## click button > > Error in function (...) : hello > *** stack smashing detected ***: /usr/lib/R/bin/exec/R terminated > ======= Backtrace: ========= > /lib/tls/i686/cmov/libc.so.6(__fortify_fail+0x48)[0xb7b98138] > /lib/tls/i686/cmov/libc.so.6...
2009 Dec 22
1
RGtk2 - retrieve ggraphics mouse coordinates during drag-and-drop event
...lerFocus(g, handler = function(h,...) { print(c("focus g")) }) addHandlerClicked(g, handler = function(h,...) { x <- h$x; y <- h$y xStart <<- x; yStart <<- y pressed <<- TRUE print(c("pressed at:", c(x,y))) }) da <- g at widget@widget callbackID <- gSignalConnect(da,"button-release-event", function (w,e,...) { allocation = w$GetAllocation() xclick = e$GetX() yclick = e$GetY() x = xclick/allocation$width y = (allocation$height - yclick)/allocation$height xyCoordsRelease <- pltToUsr(x,y) print(c("released at:&quo...
2020 Mar 24
1
[PATCH libnbd v3] Add Go language bindings (golang) (RHBZ#1814538).
This feature is roughly finished now, although it needs a few more tests and some examples. It's pretty much up to par with all the other bindings, but it lacks a completely safe AIO buffer. It won't stop you from freeing the buffer too early) because golang's GC inexplicably lacks a way to declare a root from C. I can probably do it with a global variable and ref counting on the
2020 Mar 25
3
[PATCH libnbd v4] Add Go language bindings (golang) (RHBZ#1814538).
Now runs a complete set of tests, notably including the AIO test. File descriptors are passed in and out as plain ints (instead of *os.File) for a couple of reasons: (1) We have to pass the plain int to syscall.Select. (2) Turning an fd into an os.File causes golang to set the blocking flag which is deeply unhelpful. Rich.