Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/sys
File: profil.h
/* Copyright (C) 2001-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
#ifndef _PROFIL_H
[17] Fix | Delete
#define _PROFIL_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
[21] Fix | Delete
#include <sys/time.h>
[22] Fix | Delete
#include <sys/types.h>
[23] Fix | Delete
[24] Fix | Delete
/* This interface is intended to follow the sprofil() system calls as
[25] Fix | Delete
described by the sprofil(2) man page of Irix v6.5, except that:
[26] Fix | Delete
[27] Fix | Delete
- there is no a priori limit on number of text sections
[28] Fix | Delete
- pr_scale is declared as unsigned long (instead of "unsigned int")
[29] Fix | Delete
- pr_size is declared as size_t (instead of "unsigned int")
[30] Fix | Delete
- pr_off is declared as void * (instead of "__psunsigned_t")
[31] Fix | Delete
- the overflow bin (pr_base==0, pr_scale==2) can appear anywhere
[32] Fix | Delete
in the profp array
[33] Fix | Delete
- PROF_FAST has no effect */
[34] Fix | Delete
[35] Fix | Delete
struct prof
[36] Fix | Delete
{
[37] Fix | Delete
void *pr_base; /* buffer base */
[38] Fix | Delete
size_t pr_size; /* buffer size */
[39] Fix | Delete
size_t pr_off; /* pc offset */
[40] Fix | Delete
unsigned long int pr_scale; /* pc scaling (fixed-point number) */
[41] Fix | Delete
};
[42] Fix | Delete
[43] Fix | Delete
enum
[44] Fix | Delete
{
[45] Fix | Delete
PROF_USHORT = 0, /* use 16-bit counters (default) */
[46] Fix | Delete
PROF_UINT = 1 << 0, /* use 32-bit counters */
[47] Fix | Delete
PROF_FAST = 1 << 1 /* profile faster than usual */
[48] Fix | Delete
};
[49] Fix | Delete
[50] Fix | Delete
[51] Fix | Delete
__BEGIN_DECLS
[52] Fix | Delete
[53] Fix | Delete
extern int sprofil (struct prof *__profp, int __profcnt,
[54] Fix | Delete
struct timeval *__tvp, unsigned int __flags) __THROW;
[55] Fix | Delete
[56] Fix | Delete
__END_DECLS
[57] Fix | Delete
[58] Fix | Delete
#endif /* profil.h */
[59] Fix | Delete
[60] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function