Home
last modified time | relevance | path

Searched refs:kernel_constants (Results 1 – 3 of 3) sorted by relevance

/glibc-2.36/sysdeps/unix/sysv/linux/
Dtst-glibcsyscalls.py43 kernel_constants = glibcsyscalls.kernel_constants(args.cc)
48 for name in glibc_constants.keys() & kernel_constants.keys():
49 if glibc_constants[name] != kernel_constants[name]:
51 .format(name, glibc_constants[name], kernel_constants[name]))
61 for name in glibc_constants.keys() - kernel_constants.keys():
69 for name in kernel_constants.keys() - glibc_constants.keys():
71 .format(name, kernel_constants[name]))
74 for name in kernel_constants.keys() - glibc_constants.keys():
76 .format(name, kernel_constants[name]))
Dupdate-syscall-lists.py65 kernel_constants = glibcsyscalls.kernel_constants(args.cc)
75 for name, value in sorted(kernel_constants.items()):
86 merged = names_list.merge(kernel_constants.keys())
Dglibcsyscalls.py48 def kernel_constants(cc): function