This file is indexed.

/usr/include/dsme/processwd.h is in libdsme0-dev 0.64.1+15.10.20150929-0ubuntu1.

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
51
52
53
54
55
56
57
58
59
/**
   @file processwd.h

   SW watchdog messages for DSME
   <p>
   Copyright (C) 2004-2009 Nokia Corporation.

   @author Semi Malinen <semi.malinen@nokia.com>

   This file is part of Dsme.

   Dsme is free software; you can redistribute it and/or modify
   it under the terms of the GNU Lesser General Public License
   version 2.1 as published by the Free Software Foundation.

   Dsme is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with Dsme.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DSME_PROCESSWD_H
#define DSME_PROCESSWD_H

#include "dsme/messages.h"

enum {
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_CREATE,       0x000000500),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_DELETE,       0x000000501),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_CLEAR,        0x000000502),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_SET_INTERVAL, 0x000000503),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_PING,         0x000000504),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_PONG,         0x000000504),
    DSME_MSG_ENUM(DSM_MSGTYPE_PROCESSWD_MANUAL_PING,  0x000000505),
};

/**
   Specific message type that is used to request sw watchdog 
   @ingroup message_if
*/
typedef struct {
  DSMEMSG_PRIVATE_FIELDS
  pid_t pid;
} DSM_MSGTYPE_PROCESSWD_PING;

typedef DSM_MSGTYPE_PROCESSWD_PING DSM_MSGTYPE_PROCESSWD_PONG;
typedef DSM_MSGTYPE_PROCESSWD_PING DSM_MSGTYPE_PROCESSWD_CREATE;
typedef DSM_MSGTYPE_PROCESSWD_PING DSM_MSGTYPE_PROCESSWD_DELETE;

typedef dsmemsg_generic_t     DSM_MSGTYPE_PROCESSWD_MANUAL_PING;

typedef struct {
  DSMEMSG_PRIVATE_FIELDS
  u_int32_t timeout;
} DSM_MSGTYPE_PROCESSWD_SET_INTERVAL;

#endif