This file is indexed.

/usr/include/mpich2/primitives/opa_gcc_intel_32_64_barrier.h is in libmpich2-dev 1.4.1-1ubuntu1.

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
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
/*
 *  (C) 2008 by Argonne National Laboratory.
 *      See COPYRIGHT in top-level directory.
 */

#ifndef OPA_GCC_INTEL_32_64_BARRIER_H_INCLUDED
#define OPA_GCC_INTEL_32_64_BARRIER_H_INCLUDED

#define OPA_write_barrier()      __asm__ __volatile__  ( "sfence" ::: "memory" )
#define OPA_read_barrier()       __asm__ __volatile__  ( "lfence" ::: "memory" )
#define OPA_read_write_barrier() __asm__ __volatile__  ( "mfence" ::: "memory" )


#endif /* OPA_GCC_INTEL_32_64_BARRIER_H_INCLUDED */