Constantes predefinidas

Estas constantes están definidas por esta extensión y estarán disponibles sólo cuando la extensión haya sido compilada con PHP, o bien sea cargada dinámicamente en ejecución.

PTHREADS_INHERIT_ALL (int)
Las opciones por omisión para todos los hilos, haciendo que los pthreads copien los entornos cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_NONE (int)
No hereda nada cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_INI (int)
Hereda las entradas INI cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_CONSTANTS (int)
Hereda las constantes declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_CLASSES (int)
Hereda las clases declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_FUNCTIONS (int)
Hereda las funciones declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_INCLUDES (int)
La herencia incluye la información de fichero cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_COMMENTS (int)
Hereda todos los comentarios cuando los nuevos hilos son iniciados
PTHREADS_ALLOW_HEADERS (int)
Permite que los nuevos hilos envíen los encabezados a la salida estándar (normalmente no permitido)

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top