mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 11:41:35 +01:00
migrate all
This commit is contained in:
14
file_properties.py
Normal file
14
file_properties.py
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/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),
|
||||
}
|
||||
Reference in New Issue
Block a user