mirror of
https://github.com/pulb/mailnag.git
synced 2026-01-27 15:39:01 +01:00
7 lines
224 B
Python
7 lines
224 B
Python
|
|
def set_procname(newname):
|
||
|
|
from ctypes import cdll, byref, create_string_buffer
|
||
|
|
libc = cdll.LoadLibrary('libc.so.6')
|
||
|
|
buff = create_string_buffer(len(newname)+1)
|
||
|
|
buff.value = newname
|
||
|
|
libc.prctl(15, byref(buff), 0, 0, 0)
|