This file is indexed.

/usr/include/tachyon/parallel.h is in libtachyon-dev 0.99~b2+dfsg-0.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
19
20
21
22
23
/*
 *  parallel.h - This file contains all of the defines for doing parallel
 *               message passing and such.
 *
 *  $Id: parallel.h,v 1.13 1998/07/20 04:31:57 johns Exp $
 *
 */

int rt_par_init(int *, char ***);
int rt_par_finish(void);
int rt_mynode(void);
int rt_numnodes(void);
int rt_getcpuinfo(nodeinfo **);
void rt_barrier_sync(void);

void * rt_allocate_reqbuf(int count);
void rt_free_reqbuf(void * voidhandle);

void * rt_init_scanlinereceives(scenedef * scene);
void rt_start_scanlinereceives(void * voidhandle);
void rt_waitscanlines(void * voidhandle);
void rt_delete_scanlinereceives(void * voidhandle);
void rt_sendrecvscanline(void * voidhandle);