linux_sysvec.c (a161fba99204b305d02108c94ce5b1eefbf1febc) | linux_sysvec.c (d4f55cc861b532cc50cf9013cf09afed995396ed) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * Copyright (c) 2018 Turing Robotic Industries Inc. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 357 unchanged lines hidden (view full) --- 366 .sv_name = "Linux ELF64", 367 .sv_coredump = elf64_coredump, 368 .sv_imgact_try = linux_exec_imgact_try, 369 .sv_minsigstksz = LINUX_MINSIGSTKSZ, 370 .sv_minuser = VM_MIN_ADDRESS, 371 .sv_maxuser = VM_MAXUSER_ADDRESS, 372 .sv_usrstack = USRSTACK, 373 .sv_psstrings = PS_STRINGS, /* XXX */ | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * Copyright (c) 2018 Turing Robotic Industries Inc. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 357 unchanged lines hidden (view full) --- 366 .sv_name = "Linux ELF64", 367 .sv_coredump = elf64_coredump, 368 .sv_imgact_try = linux_exec_imgact_try, 369 .sv_minsigstksz = LINUX_MINSIGSTKSZ, 370 .sv_minuser = VM_MIN_ADDRESS, 371 .sv_maxuser = VM_MAXUSER_ADDRESS, 372 .sv_usrstack = USRSTACK, 373 .sv_psstrings = PS_STRINGS, /* XXX */ |
374 .sv_stackprot = VM_PROT_ALL, /* XXX */ | 374 .sv_stackprot = VM_PROT_READ | VM_PROT_WRITE, |
375 .sv_copyout_strings = linux_copyout_strings, 376 .sv_setregs = linux_exec_setregs, 377 .sv_fixlimit = NULL, 378 .sv_maxssiz = NULL, 379 .sv_flags = SV_ABI_LINUX | SV_LP64 | SV_SHP, 380 .sv_set_syscall_retval = linux_set_syscall_retval, 381 .sv_fetch_syscall_args = linux_fetch_syscall_args, 382 .sv_syscallnames = NULL, --- 152 unchanged lines hidden --- | 375 .sv_copyout_strings = linux_copyout_strings, 376 .sv_setregs = linux_exec_setregs, 377 .sv_fixlimit = NULL, 378 .sv_maxssiz = NULL, 379 .sv_flags = SV_ABI_LINUX | SV_LP64 | SV_SHP, 380 .sv_set_syscall_retval = linux_set_syscall_retval, 381 .sv_fetch_syscall_args = linux_fetch_syscall_args, 382 .sv_syscallnames = NULL, --- 152 unchanged lines hidden --- |