linux.h (931e2a1a6e0d8ac7d99f48eb7fc744e3a40284f0) | linux.h (f730d606d5f9316f4091e793936694ca78a36fc4) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 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 --- 434 unchanged lines hidden (view full) --- 443 * arch specific open/fcntl flags 444 */ 445#define LINUX_F_GETLK64 12 446#define LINUX_F_SETLK64 13 447#define LINUX_F_SETLKW64 14 448 449union l_semun { 450 l_int val; | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 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 --- 434 unchanged lines hidden (view full) --- 443 * arch specific open/fcntl flags 444 */ 445#define LINUX_F_GETLK64 12 446#define LINUX_F_SETLK64 13 447#define LINUX_F_SETLKW64 14 448 449union l_semun { 450 l_int val; |
451 struct l_semid_ds *buf; | 451 l_uintptr_t buf; |
452 l_ushort *array; | 452 l_ushort *array; |
453 struct l_seminfo *__buf; 454 void *__pad; | 453 l_uintptr_t __buf; 454 l_uintptr_t __pad; |
455}; 456 457struct l_sockaddr { 458 l_ushort sa_family; 459 char sa_data[14]; 460}; 461 462struct l_ifmap { --- 152 unchanged lines hidden --- | 455}; 456 457struct l_sockaddr { 458 l_ushort sa_family; 459 char sa_data[14]; 460}; 461 462struct l_ifmap { --- 152 unchanged lines hidden --- |