Home | History | Annotate | Download | only in _multiprocessing

Lines Matching refs:maxvalue

18     int maxvalue;
359 /* We will only check properly the maxvalue == 1 case */
360 if (self->maxvalue == 1) {
384 does not rise above maxvalue. */
387 } else if (sval >= self->maxvalue) {
409 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue)
420 self->maxvalue = maxvalue;
429 int kind, maxvalue, value;
431 static char *kwlist[] = {"kind", "value", "maxvalue", NULL};
435 &kind, &value, &maxvalue))
452 handle = SEM_CREATE(buffer, value, maxvalue);
462 result = newsemlockobject(type, handle, kind, maxvalue);
479 int kind, maxvalue;
482 &handle, &kind, &maxvalue))
485 return newsemlockobject(type, handle, kind, maxvalue);
592 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue