linux.h (0bf8d5d5f43426321940e351939b0b712f28b08f) | linux.h (ba279bcd6d75aa236bcb9ccf11aeb6f51a2f8514) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * All rights reserved. 6 * Copyright (c) 2013 Dmitry Chagin <dchagin@FreeBSD.org> 7 * 8 * Redistribution and use in source and binary forms, with or without --- 300 unchanged lines hidden (view full) --- 309 * handler, but use the BSD way of calling the handler and sigreturn(). 310 * This means that we need to pass the pointer to the handler too. 311 * It is appended to the frame to not interfere with the rest of it. 312 */ 313 314struct l_rt_sigframe { 315 struct l_ucontext sf_sc; 316 struct l_siginfo sf_si; | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * All rights reserved. 6 * Copyright (c) 2013 Dmitry Chagin <dchagin@FreeBSD.org> 7 * 8 * Redistribution and use in source and binary forms, with or without --- 300 unchanged lines hidden (view full) --- 309 * handler, but use the BSD way of calling the handler and sigreturn(). 310 * This means that we need to pass the pointer to the handler too. 311 * It is appended to the frame to not interfere with the rest of it. 312 */ 313 314struct l_rt_sigframe { 315 struct l_ucontext sf_sc; 316 struct l_siginfo sf_si; |
317 l_handler_t sf_handler; | |
318}; 319 320/* 321 * mount flags 322 */ 323#define LINUX_MS_RDONLY 0x0001 324#define LINUX_MS_NOSUID 0x0002 325#define LINUX_MS_NODEV 0x0004 --- 147 unchanged lines hidden --- | 317}; 318 319/* 320 * mount flags 321 */ 322#define LINUX_MS_RDONLY 0x0001 323#define LINUX_MS_NOSUID 0x0002 324#define LINUX_MS_NODEV 0x0004 --- 147 unchanged lines hidden --- |