Displaying 3 results from an estimated 3 matches for "wait_any".
Did you mean:
wait_all
2007 Dec 27
1
[ win32utils-Patches-16626 ] Fix errors in wait_any() method
...s opened at 2007-12-26 21:11
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=413&aid=16626&group_id=85
Category: win32-ipc
Group: Bug Fix
Status: Open
Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: Fix errors in wait_any() method
Initial Comment:
The wait_any() method contained several run-time errors.
----------------------------------------------------------------------
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=413&aid=16626&group_id=85
2004 Oct 23
0
win32-ipc, with blocks (code review please)
...gnalled
}
if((dwWait >= WAIT_ABANDONED_0) && (dwWait < WAIT_ABANDONED_0 + len)){
return INT2NUM(-(dwWait - WAIT_ABANDONED_0 + 1)); // an abandoned
mutex
}
if(dwWait == WAIT_TIMEOUT){
return INT2NUM(0); // Timed out
}
return Qnil;
}
static VALUE ipc_wait_any(int argc, VALUE* argv, VALUE klass)
{
VALUE rbObject, rbTimeout;
DWORD dwTimeout = INFINITE;
rb_scan_args(argc,argv,"11",&rbObject,&rbTimeout);
if(TYPE(rbObject)!=T_ARRAY) {
rb_raise(rb_eArgError,"Invalid Object Handles");
}
if(rbTimeout!=...
2014 Sep 05
0
Wine release 1.7.26
...elpers.
usp10/tests: Test for S_OK return value in a clean way.
advapi32: Switch to heap helpers in the rest of the code.
dwrite/tests: Initial tests for SetLineBreakpoints().
msvcrt: Implement llabs().
ntdll: NtWaitForMultipleObjects()'s third arguments means 'wait_any', not 'wait_all'.
qedit: Use V_BSTR() to access BSTR data.
quartz: Use V_* macros to access variant members.
devenum: Use V_* macros to access variant data.
usp10: Add a missing 'break' for rule LB20.
dwrite: Implement AnalyzeLineBreakpoints() using...