Home | History | Annotate | Download | only in _multiprocessing

Lines Matching defs:maxvalue

19     int maxvalue;
364 /* We will only check properly the maxvalue == 1 case */
365 if (self->maxvalue == 1) {
389 does not rise above maxvalue. */
392 } else if (sval >= self->maxvalue) {
414 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue,
426 self->maxvalue = maxvalue;
435 int kind, maxvalue, value, unlink;
438 static char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink",
442 &kind, &value, &maxvalue, &name, &unlink))
459 handle = SEM_CREATE(name, value, maxvalue);
467 result = newsemlockobject(type, handle, kind, maxvalue, name_copy);
487 int kind, maxvalue;
491 &handle, &kind, &maxvalue, &name))
511 return newsemlockobject(type, handle, kind, maxvalue, name_copy);
619 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue), READONLY,