This file is indexed.

/usr/share/gccxml-0.9/Intel/pthread.h is in gccxml 0.9.0+git20140716-2.

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
#ifndef GCCXML_PTHREAD_H
#define GCCXML_PTHREAD_H

/* Some pthread.h files use __thread, which is a keyword for GCC 3.3.
   Change the name for the duration of including pthread.h.  */
#ifndef __thread
# define __thread gccxml__thread
# define gccxml__thread gccxml__thread
#endif
#include_next <pthread.h>
#ifdef gccxml__thread
# undef gccxml__thread
# undef __thread
#endif

#endif