This file is indexed.

/usr/include/gap/thread.h is in gap-dev 4r8p6-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
#ifndef GAP_THREAD_H
#define GAP_THREAD_H

/*
 * This header is a placeholder for the HPC-GAP header of the same name. It
 * is here to allow us to reduce diffs between the code bases of HPC-GAP
 * and classic GAP.
 */

#define HashLock(obj)         do { } while(0)
#define HashLockShared(obj)   do { } while(0)
#define HashUnlock(obj)       do { } while(0)
#define HashUnlockShared(obj) do { } while(0)

#endif