search for: mechainsm

Displaying 2 results from an estimated 2 matches for "mechainsm".

Did you mean: mecanism
2020 Jul 20
0
[PATCH vhost next 06/10] vdpa: Add means to communicate vq status on get_vq_state
...ate of the VQ back to the caller. This is not available now. >>> I think an asynchronous is preferred but that is not available >>> currently. >> >> I still don't see the reason, maybe you can give me an example? >> >> > My intention was to provide a mechainsm to return meaningful information > on the state of the vq. For example, when you fail to get the state of > the VQ. > > Maybe I could just change the prototype of the function to return int > and the driver could put an error if it has trouble returning the vq > state. That'...
2003 Nov 08
1
signalCondition
Does signalCondition() only work within try-catch blocks? I expected: testSignal <- function() { error <- simpleError("An error!") signalCondition(error) } to do the same thing as testStop <- function() { error <- simpleError("An error!") stop(error) } but testSignal returns NULL without throwing an error. Have I misunderstood something?