Files
linux-kernel-module-cheat/file_properties.py
Ciro Santilli 六四事件 法轮功 0ef494b681 migrate all
2019-05-05 00:00:00 +00:00

15 lines
348 B
Python

#!/usr/bin/env python3
class FileProperties:
def __init__(
more_than_1s=False,
exits_nonzero=False,
interactive=False,
):
self.more_than_1s = more_than_1s
self.exits_nonzero = exits_nonzero
executable_properties = {
'userland/arch/x86_64/c/ring0.c': ExecutableProperties(exits_nonzero=True),
}