This file is indexed.

/usr/include/globjects/Sync.h is in libglobjects-dev 1.1.0-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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#pragma once

#include <glbinding/gl/types.h>

#include <globjects/base/Referenced.h>

#include <globjects/globjects_api.h>


namespace globjects
{


class GLOBJECTS_API Sync : public Referenced
{
    friend class AbstractObjectNameImplementation;

public:
    static Sync * fence(gl::GLenum condition);

    virtual ~Sync();

    gl::GLenum clientWait(gl::SyncObjectMask flags, gl::GLuint64 timeout);
    void wait(gl::GLuint64 timeout);

    void get(gl::GLenum pname, gl::GLsizei bufsize, gl::GLsizei * length, gl::GLint * values);
    gl::GLint get(gl::GLenum pname);

    gl::GLsync sync() const;

protected:
    Sync(gl::GLsync sync);

    void wait(gl::UnusedMask flags, gl::GLuint64 timeout);

    static gl::GLsync fenceSync(gl::GLenum condition, gl::UnusedMask flags);
    static Sync * fence(gl::GLenum condition, gl::UnusedMask flags);

protected:
    gl::GLsync m_sync;
    mutable void * m_objectLabelState;
};


} // namespace globjects