Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/sys
File: swap.h
/* Calls to enable and disable swapping on specified locations. Linux version.
[0] Fix | Delete
Copyright (C) 1996-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _SYS_SWAP_H
[18] Fix | Delete
[19] Fix | Delete
#define _SYS_SWAP_H 1
[20] Fix | Delete
#include <features.h>
[21] Fix | Delete
[22] Fix | Delete
/* The swap priority is encoded as:
[23] Fix | Delete
(prio << SWAP_FLAG_PRIO_SHIFT) & SWAP_FLAG_PRIO_MASK
[24] Fix | Delete
*/
[25] Fix | Delete
#define SWAP_FLAG_PREFER 0x8000 /* Set if swap priority is specified. */
[26] Fix | Delete
#define SWAP_FLAG_PRIO_MASK 0x7fff
[27] Fix | Delete
#define SWAP_FLAG_PRIO_SHIFT 0
[28] Fix | Delete
#define SWAP_FLAG_DISCARD 0x10000 /* Discard swap cluster after use. */
[29] Fix | Delete
[30] Fix | Delete
__BEGIN_DECLS
[31] Fix | Delete
[32] Fix | Delete
/* Make the block special device PATH available to the system for swapping.
[33] Fix | Delete
This call is restricted to the super-user. */
[34] Fix | Delete
extern int swapon (const char *__path, int __flags) __THROW;
[35] Fix | Delete
[36] Fix | Delete
/* Stop using block special device PATH for swapping. */
[37] Fix | Delete
extern int swapoff (const char *__path) __THROW;
[38] Fix | Delete
[39] Fix | Delete
__END_DECLS
[40] Fix | Delete
[41] Fix | Delete
#endif /* _SYS_SWAP_H */
[42] Fix | Delete
[43] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function