Issue #21704: Fix build error for _multiprocessing when semaphores

are not available.  Patch by Arfrever Frehtes Taifersar Arahesis.
This commit is contained in:
Richard Oudkerk 2014-07-28 23:01:02 +01:00
parent 7611964b2c
commit e0e65817e5
3 changed files with 6 additions and 0 deletions

View file

@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
{"recv", multiprocessing_recv, METH_VARARGS, ""},
{"send", multiprocessing_send, METH_VARARGS, ""},
#endif
#ifndef POSIX_SEMAPHORES_NOT_ENABLED
{"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
#endif
{NULL}
};