Home | History | Annotate | Download | only in _multiprocessing

Lines Matching full:maxvalue

19     int maxvalue;
354 /* We will only check properly the maxvalue == 1 case */
355 if (self->maxvalue == 1) {
379 does not rise above maxvalue. */
382 } else if (sval >= self->maxvalue) {
404 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue,
416 self->maxvalue = maxvalue;
425 int kind, maxvalue, value, unlink;
428 static char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink",
432 &kind, &value, &maxvalue, &name, &unlink))
448 handle = SEM_CREATE(name, value, maxvalue);
456 result = newsemlockobject(type, handle, kind, maxvalue, name_copy);
474 int kind, maxvalue;
478 &handle, &kind, &maxvalue, &name))
498 return newsemlockobject(type, handle, kind, maxvalue, name_copy);
606 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue), READONLY,