proc.h (1e2521ffaef4fd0950686f1302283a92ccf9c978) proc.h (6998d5b1c86c56aeb5fa218db63c17b1732ec845)
1/*-
2 * SPDX-License-Identifier: BSD-4-Clause
3 *
4 * Copyright (c) 1991 Regents of the University of California.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 68 unchanged lines hidden (view full) ---

77 * arguments are already correctly aligned, even if they were passed in
78 * via registers, we just need to make sure we copy them to an aligned
79 * buffer.
80 */
81struct syscall_args {
82 u_int code;
83 struct sysent *callp;
84 register_t args[MAXARGS];
1/*-
2 * SPDX-License-Identifier: BSD-4-Clause
3 *
4 * Copyright (c) 1991 Regents of the University of California.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 68 unchanged lines hidden (view full) ---

77 * arguments are already correctly aligned, even if they were passed in
78 * via registers, we just need to make sure we copy them to an aligned
79 * buffer.
80 */
81struct syscall_args {
82 u_int code;
83 struct sysent *callp;
84 register_t args[MAXARGS];
85 u_int nap;
86} __aligned(8);
87
88#endif /* !_MACHINE_PROC_H_ */
85} __aligned(8);
86
87#endif /* !_MACHINE_PROC_H_ */