Comment 3 for bug 677069

Revision history for this message
Julian Edwards (julian-edwards) wrote : Re: The twistd executive manager process should never get paged out

This works:
{{{
In [1]: from ctypes import cdll
In [2]: libc = cdll.LoadLibrary("libc.so.6")
In [3]: libc.mlockall(3)
Out[3]: 0
}}}

However it requires the CAP_IPC_LOCK capability.