/usr/include/freehdl/kernel-sigacl-list.hh is in libfreehdl0-dev 0.0.8-2.1.
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 | #ifndef FREEHDL_KERNEL_SIGACL_LIST_H
#define FREEHDL_KERNEL_SIGACL_LIST_H
#include <freehdl/kernel-classes.hh>
#include <freehdl/kernel-sig-info.hh>
#include <freehdl/kernel-acl.hh>
// sigacl_list is used to construct a list of
// signal_info_base pointer - acl pointer pairs.
// Currently not used
class sigacl_list {
public:
struct _items {
sig_info_base *signal;
acl *aclp;
};
int count;
_items *list;
sigacl_list(int size);
~sigacl_list();
void add(sig_info_base *s, acl *a = NULL);
};
#endif
|