This file is indexed.

/usr/include/Yap/myddas_statistics_structs.h is in yap 6.2.2-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef __MYDDAS_STATISTICS_STRUCTS_H__
#define __MYDDAS_STATISTICS_STRUCTS_H__

#ifdef MYDDAS_STATS

/* This strucuture holds some global statistics*/
struct myddas_global_stats {
  MYDDAS_STATS_STRUCT stats;
};

/* Structure to hold any kind of statistics */
struct myddas_stats_struct{
  enum {time_str,
	integer} type;
  union {
    struct {
      MYDDAS_STATS_TIME time_str; 
    } time_str;
    struct {
      MyddasULInt integer;
    } integer;
  } u;
  MyddasULInt count;
  MYDDAS_STATS_STRUCT nxt;
};

/* Time structure for the MYDDAS Interface */
struct myddas_stats_time_struct{
  enum {time_copy,
	time_final} type;
  
  union {
    struct {
      unsigned long tv_sec;
      unsigned long tv_usec;
    } time_copy;
    struct {
      MyddasUSInt hours;  
      MyddasUSInt minutes;  //Max 59
      MyddasUSInt seconds;  //Max 59
      MyddasUSInt miliseconds; //Max 999
      MyddasUSInt microseconds; //Max 999
    } time_final;
  } u;
};


#endif /* MYDDAS_STATS */

#endif