This file is indexed.

/usr/include/gap/tls.h is in gap-dev 4r8p8-3.

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
#ifndef GAP_TLS_H
#define GAP_TLS_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 ReadGuard(bag) NOOP
#define WriteGuard(bag) NOOP

static inline Bag ImpliedWriteGuard(Bag bag)
{
  return bag;
}

#endif