This file is indexed.

/usr/include/kvutils/kvu_threads.h is in libkvutils-dev 2.8.1-5build1.

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
// -*- mode: C++; -*-
#ifndef INCLUDED_KVU_THREADS_H
#define INCLUDED_KVU_THREADS_H

#include <string>
#include <pthread.h>

int kvu_pthread_mutex_spinlock (pthread_mutex_t *mp, long int spinlimit);
int kvu_pthread_timed_wait(pthread_mutex_t* mutex, pthread_cond_t* cond, long int seconds);
std::string kvu_pthread_timed_wait_result(int result, const std::string& prefix);

#endif