Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: ucontext.h
/* Copyright (C) 1997-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
/* System V ABI compliant user-level context switching support. */
[17] Fix | Delete
[18] Fix | Delete
#ifndef _UCONTEXT_H
[19] Fix | Delete
#define _UCONTEXT_H 1
[20] Fix | Delete
[21] Fix | Delete
#include <features.h>
[22] Fix | Delete
[23] Fix | Delete
/* Get definition of __INDIRECT_RETURN. */
[24] Fix | Delete
#include <bits/indirect-return.h>
[25] Fix | Delete
[26] Fix | Delete
/* Get machine dependent definition of data structures. */
[27] Fix | Delete
#include <sys/ucontext.h>
[28] Fix | Delete
[29] Fix | Delete
__BEGIN_DECLS
[30] Fix | Delete
[31] Fix | Delete
/* Get user context and store it in variable pointed to by UCP. */
[32] Fix | Delete
extern int getcontext (ucontext_t *__ucp) __THROWNL;
[33] Fix | Delete
[34] Fix | Delete
/* Set user context from information of variable pointed to by UCP. */
[35] Fix | Delete
extern int setcontext (const ucontext_t *__ucp) __THROWNL;
[36] Fix | Delete
[37] Fix | Delete
/* Save current context in context variable pointed to by OUCP and set
[38] Fix | Delete
context from variable pointed to by UCP. */
[39] Fix | Delete
extern int swapcontext (ucontext_t *__restrict __oucp,
[40] Fix | Delete
const ucontext_t *__restrict __ucp)
[41] Fix | Delete
__THROWNL __INDIRECT_RETURN;
[42] Fix | Delete
[43] Fix | Delete
/* Manipulate user context UCP to continue with calling functions FUNC
[44] Fix | Delete
and the ARGC-1 parameters following ARGC when the context is used
[45] Fix | Delete
the next time in `setcontext' or `swapcontext'.
[46] Fix | Delete
[47] Fix | Delete
We cannot say anything about the parameters FUNC takes; `void'
[48] Fix | Delete
is as good as any other choice. */
[49] Fix | Delete
extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
[50] Fix | Delete
int __argc, ...) __THROW;
[51] Fix | Delete
[52] Fix | Delete
__END_DECLS
[53] Fix | Delete
[54] Fix | Delete
#endif /* ucontext.h */
[55] Fix | Delete
[56] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function