Celery 1.0.6 (stable) documentation

This Page

Platform Specific - celery.platform

celery.platform.ignore_signal(signal_name)

Ignore signal using SIG_IGN.

Does nothing if the platform doesn’t support signals, or the specified signal in particular.

celery.platform.install_signal_handler(signal_name, handler)

Install a handler.

Does nothing if the current platform doesn’t support signals, or the specified signal in particular.

celery.platform.reset_signal(signal_name)

Reset signal to the default signal handler.

Does nothing if the platform doesn’t support signals, or the specified signal in particular.

celery.platform.set_mp_process_title(progname, info=None)

Set the ps name using the multiprocessing process name.

Only works if setproctitle is installed.

celery.platform.set_process_title(progname, info=None)

Set the ps name for the currently running process.

Only works if :mod`setproctitle` is installed.