This file is indexed.

/usr/include/xview_private/ntfy_ctbl.h is in xviewg-dev 3.2p1.4-28.1.

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
/* The NTFY_CNDTBL is an array of lists where each element in the array 
 * represents one of the nine conditions (listed below) associated with the 
 * notifier.  The lists which are associated to each element are made up of
 * structs which contain ptrs back to the client and the conditons the
 * client is interested in.
 * The purpose of the NTFY_CNDTBL is to provide a fast look up for the
 * notifier when a unix type condition occurs.  For the notifier to 
 * determine who is interested in a particular condition, it must only
 * look to the proper element in the ntfy_cndtbl to obtain the list of
 * clients who have that particular interest.
 */

typedef struct ntfy_cndtbl {
	NTFY_CLIENT		*client;
	NTFY_CONDITION		*condition;
	struct ntfy_cndtbl	*next;
} NTFY_CNDTBL;

#define NTFY_LAST_CND		9