Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*
  2. * These are the maximum length and maximum number of strings passed to the
  3. * execve() system call. MAX_ARG_STRLEN is essentially random but serves to
  4. * prevent the kernel from being unduly impacted by misaddressed pointers.
  5. * MAX_ARG_STRINGS is chosen to fit in a signed 32-bit integer.
  6. */
  7. #define MAX_ARG_STRLEN (PAGE_SIZE * 32)
  8. #define MAX_ARG_STRINGS 0x7FFFFFFF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement